/debug/
/gpsbabel
/gpsbabel-debug
-/gpsbabel_coverage.xml
/gpsbabel.exe
/gpsbabel.fo
/gpsbabel.html
/gpsbabel.pdf
+/gpsbabel_autogen/
+/gpsbabel_coverage.xml
/Makefile
.qmake.cache
.qmake.stash
*.a
.ninja_deps
.ninja_log
+.qt
build.ninja
rules.ninja
cmake_install.cmake
CMakeCache.txt
CMakeFiles/
+CTestTestfile.cmake
/GPSBabel[0-9]*.[0-9]*.[0-9]*/
/GPSBabel[0-9]*.[0-9]*.[0-9]*.tar.bz2
/makelinuxdist.sh
/gbversion.h
/qrc_gpsbabel.cpp
/.vscode/
+Testing
geocache.cc
geojson.cc
globalsat_sport.cc
+ googletakeout.cc
gtm.cc
gtrnctr.cc
html.cc
geojson.h
globalsat_sport.h
geo.h
+ googletakeout.h
gpx.h
grtcirc.h
gtrnctr.h
geojson
geo
globalsat_sport
+ googletakeout
gpsdrive
gpx
grapheme
--- /dev/null
+/*
+ Support reading Google Takeout Timeline Location History JSON format.
+
+ Copyright (C) 2023 Tyler MacDonald, tyler@macdonald.name
+ Copyright (C) 2023 Robert Lipe, robertlipe+source@gpsbabel.org
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ USA.
+*/
+
+#include "googletakeout.h"
+
+#include <QChar> // for operator==, QChar
+#include <QDateTime> // for QDateTime
+#include <QDebug> // for QDebug
+#include <QDir> // for QDir
+#include <QFileInfo> // for QFileInfo
+#include <QFileInfoList> // for QFileInfoList
+#include <QIODevice> // for operator|, QIODevice
+#include <QJsonArray> // for QJsonArray, QJsonArray::const_iterator
+#include <QJsonDocument> // for QJsonDocument
+#include <QJsonObject> // for QJsonObject, QJsonObject::const_iterator
+#include <QJsonParseError> // for QJsonParseError, QJsonParseError::NoError
+#include <QJsonValueRef> // for QJsonValueRef
+#include <QtCore> // for ISODate, QIODeviceBase::ReadOnly, QIODeviceBase::Text
+
+#include "src/core/datetime.h" // for DateTime
+#include "src/core/file.h" // for File
+#include "src/core/logging.h" // for Debug, FatalMsg, Warning
+
+#define MYNAME "Google Takeout"
+#define TIMELINE_OBJECTS "timelineObjects"
+
+static const QList<QString> takeout_month_names{
+ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY",
+ "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"
+};
+
+static inline void takeout_fatal(const QString& message) {
+ fatal(FatalMsg() << MYNAME << ": " << message);
+}
+
+static inline void takeout_warning(const QString& message) {
+ Warning() << MYNAME << ": " << message;
+}
+
+/* create a waypoint from late7/lone7 and optional metadata */
+static Waypoint* takeout_waypoint(
+ int lat_e7,
+ int lon_e7,
+ const QString* shortname,
+ const QString* description,
+ const QString* start_str
+)
+{
+ Waypoint* waypoint = new Waypoint();
+ waypoint->latitude = lat_e7 / 1e7;
+ waypoint->longitude = lon_e7 / 1e7;
+ if (shortname && (*shortname).length() > 0) {
+ waypoint->shortname = *shortname;
+ }
+ if (description && (*description).length() > 0) {
+ waypoint->description = *description;
+ }
+ if (start_str && (*start_str).length() > 0) {
+ gpsbabel::DateTime start = QDateTime::fromString(*start_str, Qt::ISODate);
+ waypoint->SetCreationTime(start);
+ }
+ return waypoint;
+}
+
+static bool track_maybe_add_wpt(route_head* route, Waypoint* waypoint) {
+ if (waypoint->latitude == 0 && waypoint->longitude == 0) {
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Track " << route->rte_name << "@" <<
+ waypoint->creation_time.toPrettyString() <<
+ ": Dropping point with no lat/long";
+ }
+ delete waypoint; // as we're dropping it, gpsbabel won't clean it up later
+ return false;
+ }
+ track_add_wpt(route, waypoint);
+ return true;
+}
+
+static QList<QJsonObject> readJson(
+ const QString& source)
+{
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Reading from JSON " << source;
+ }
+ auto* ifd = new gpsbabel::File(source);
+ ifd->open(QIODevice::ReadOnly | QIODevice::Text);
+ const QString content = ifd->readAll();
+ QJsonParseError error{};
+ const QJsonDocument doc = QJsonDocument::fromJson(content.toUtf8(), &error);
+ if (error.error != QJsonParseError::NoError) {
+ takeout_fatal(
+ QString("JSON parse error in ") + ifd->fileName() + ": " +
+ error.errorString()
+ );
+ }
+
+ const QJsonObject root = doc.object();
+ const QJsonValue timelineObjectsIn = root.value(TIMELINE_OBJECTS);
+ if (timelineObjectsIn.isNull()) {
+ takeout_fatal(
+ ifd->fileName() + " is missing required \"" +
+ TIMELINE_OBJECTS + "\" section"
+ );
+ }
+
+ const QJsonArray timelineJson = timelineObjectsIn.toArray();
+ QList<QJsonObject> timeline;
+ for (QJsonValue&& val : timelineJson) {
+ if (val.isObject()) {
+ timeline.append(val.toObject());
+ } else {
+ takeout_fatal(ifd->fileName() + " has non-object in timelineObjects");
+ }
+ }
+ ifd->close();
+ delete ifd;
+ if (timeline.isEmpty()) {
+ takeout_warning(QString(source) + " does not contain any timelineObjects");
+ }
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Saw " << timeline.size() << " timelineObjects in " << source;
+ }
+ return timeline;
+}
+
+static QList<QString> readDir(
+ const QString& source)
+{
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Reading from folder " << source;
+ }
+ const QDir dir{source};
+ const QFileInfo sourceInfo{source};
+ const QString baseName = sourceInfo.fileName();
+ QList<QString> paths;
+ /* If a directory's name is a 4-digit number, this is a "year" folder
+ * and we will look for YYYY_MONTH.json files.
+ * Otherwise, this is the all-time folder that _contains_ the month
+ * folders
+ */
+ if (baseName.length() == 4 && baseName.toInt() > 0) {
+ for (auto&& month : takeout_month_names) {
+ const QString path = source + "/" + baseName + "_" + month + ".json";
+ const QFileInfo info{path};
+ if (info.exists()) {
+ if (global_opts.debug_level >= 3) {
+ Debug(3) << "Adding file " << path;
+ }
+ paths.append(path);
+ } else {
+ if (global_opts.debug_level >= 4) {
+ Debug(4) << "Did not find " << path;
+ }
+ }
+ }
+ } else {
+ for (auto&& entry : dir.entryInfoList()) {
+ const QString path = dir.filePath(entry.fileName());
+ const QString name = entry.fileName();
+ if (name == "." || name == "..") {
+ continue;
+ }
+ if (name.length() == 4 && name.toInt() > 0) {
+ if (global_opts.debug_level >= 3) {
+ Debug(3) << "Adding directory " << path;
+ }
+ paths.append(path);
+ } else {
+ if (entry.isDir()) {
+ takeout_warning(QString("Malformed folder name ") + path);
+ }
+ }
+ }
+ }
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Saw " << paths.size() << " paths in " << source;
+ }
+ return paths;
+}
+
+void
+GoogleTakeoutFormat::title_case(QString& title)
+{
+ bool new_word = true;
+ for (auto& chr : title) {
+ if (chr == '_' || chr == ' ') {
+ new_word = true;
+ if (chr == '_') {
+ chr = ' ';
+ }
+ } else if (new_word) {
+ new_word = false;
+ chr = chr.toUpper();
+ } else {
+ chr = chr.toLower();
+ }
+ }
+}
+
+void
+GoogleTakeoutFormat::rd_init(const QString& fname) {
+ if (global_opts.debug_level >= 4) {
+ Debug(4) << "rd_init(" << fname << ")";
+ }
+ inputStream = GoogleTakeoutInputStream(fname);
+}
+
+void
+GoogleTakeoutFormat::read()
+{
+ int items = 0;
+ int points = 0;
+ int place_visits = 0;
+ int activity_segments = 0;
+ QJsonValue iterator = inputStream.next();
+
+ for (; !iterator.isNull(); iterator = inputStream.next()) {
+ ++ items;
+ /*
+ * A timelineObject is stored in a single-element dictionary.
+ * The key will be either a "placeVisit" (waypoint) or
+ * "activitySegment" (movement), and the value is another dictionary
+ * containing the timelineObject's details.
+ *
+ */
+ const QJsonObject timelineObjectContainer = iterator.toObject();
+ int len = timelineObjectContainer.size();
+ if (len != 1) {
+ takeout_fatal(
+ QString("expected a single key dict, got ") + QString::number(len) +
+ " keys"
+ );
+ }
+ const QJsonObject::const_iterator timelineObjectIterator =
+ timelineObjectContainer.constBegin();
+ const QString& timelineObjectType = timelineObjectIterator.key();
+ const QJsonObject& timelineObjectDetail =
+ timelineObjectIterator.value().toObject();
+ if (timelineObjectType == PLACE_VISIT) {
+ add_place_visit(timelineObjectDetail);
+ ++ place_visits;
+ ++ points;
+ } else if (timelineObjectType == ACTIVITY_SEGMENT) {
+ points += add_activity_segment(timelineObjectDetail);
+ ++ activity_segments;
+ } else {
+ takeout_fatal(
+ QString("unknown timeline object type \"") + timelineObjectType +
+ "\""
+ );
+ }
+ }
+ if (global_opts.debug_level >= 1) {
+ Debug(1) << MYNAME << ": Processed " << items << " items: " <<
+ place_visits << " " << PLACE_VISIT << ", " << activity_segments <<
+ " " << ACTIVITY_SEGMENT << " (" << points << " points total)";
+ }
+}
+
+void
+GoogleTakeoutFormat::add_place_visit(const QJsonObject& placeVisit)
+{
+ /*
+ * placeVisits:
+ * one lat/long, will always contain "location.address", may also
+ * contain "location.name"
+ * "duration" contains start and end times
+ *
+ * TODO: capture end time/duration
+ * some placeVisits have a simplifiedRawPath.
+ * TODO: do something with simplifiedRawPath
+ */
+ const QJsonObject& loc = placeVisit[LOCATION].toObject();
+ const QString address = loc[ADDRESS].toString();
+ const QString timestamp = placeVisit[DURATION][START_TIMESTAMP].toString();
+ Waypoint* waypoint;
+
+ if (loc.contains(NAME) && loc[NAME].toString().length() > 0) {
+ QString name = loc[NAME].toString();
+ waypoint = takeout_waypoint(
+ loc[LOCATION_LATE7].toInt(),
+ loc[LOCATION_LONE7].toInt(),
+ name.length() > 0 ? &name : nullptr,
+ &address,
+ ×tamp
+ );
+ } else {
+ waypoint = takeout_waypoint(
+ loc[LOCATION_LATE7].toInt(),
+ loc[LOCATION_LONE7].toInt(),
+ nullptr,
+ &address,
+ ×tamp
+ );
+ }
+
+ waypt_add(waypoint);
+}
+
+/* add an "activitySegment" (track)
+ * an activitySegment has at least two points (a start and an end) and
+ * may have waypoints in-between.
+ *
+ * returns the total number of points added
+ */
+int
+GoogleTakeoutFormat::add_activity_segment(const QJsonObject& activitySegment)
+{
+ /*
+ * activitySegment:
+ * one startLocation and one endLocation. there are also waypoints
+ * in the waypointPath array. the "distance" field appears to be in
+ * metres. There is a "duration" section with "startTimestamp" and
+ * "endTimestamp" with "distance" and "duration", "speed" can be
+ * inferred.
+ * "activityType" is stuff like "IN_PASSENGER_VEHICLE", "WALKING", etc
+ *
+ * some activitySegments also include a "parkingEvent".
+ * TODO: add parkingEvent as its own waypoint
+ * some activitySegments also have a simplifiedRawPath
+ * TODO: do something with simplifiedRawPath
+ */
+ int n_points = 0;
+ Waypoint* waypoint = nullptr;
+ auto* route = new route_head;
+ const QJsonObject startLoc = activitySegment[START_LOCATION].toObject();
+ const QJsonObject endLoc = activitySegment[END_LOCATION].toObject();
+ QString activityType = activitySegment[ACTIVITY_TYPE].toString();
+ title_case(activityType);
+ route->rte_name = activityType;
+ track_add_head(route);
+ QString timestamp;
+ timestamp = activitySegment[DURATION][START_TIMESTAMP].toString();
+ waypoint = takeout_waypoint(
+ startLoc[LOCATION_LATE7].toInt(),
+ startLoc[LOCATION_LONE7].toInt(),
+ nullptr, nullptr,
+ ×tamp
+ );
+ n_points += track_maybe_add_wpt(route, waypoint);
+ /* activitySegments give us three sets of waypoints.
+ * 1. "waypoints" dict
+ * This is available on all tracks, but only includes the
+ * lat/lon - no timestamp.
+ * 2. "simplifiedRawPath" dict
+ * these all have timestamps which provides richer metadata.
+ * This is not available on all tracks.
+ * 3. An incredibly detailed "roadSegment" list that includes a
+ * bunch of google placeId's and durations, but no lat/long.
+ * To get the lat/lon you need to query the Google Places API
+ * https://maps.googleapis.com/maps/api/place/details/json with:
+ * placeid=placeId
+ * key=apiKey
+ * and then extract "lat" and "lng" from result.geometry.location
+ * This also costs $17USD per 1,000 location requests
+ * TODO: add an option to query places API, and an option to count
+ * how many Google Places requests it would take to process a file
+ *
+ * For now, we use (1)
+ */
+ const QJsonArray points =
+ activitySegment[WAYPOINT_PATH][WAYPOINTS].toArray();
+ for (const auto&& pointRef: points) {
+ const QJsonObject point = pointRef.toObject();
+ waypoint = takeout_waypoint(
+ point[LATE7].toInt(),
+ point[LONE7].toInt(),
+ nullptr,
+ nullptr,
+ nullptr
+ );
+ n_points += track_maybe_add_wpt(route, waypoint);
+ }
+ timestamp = activitySegment[DURATION][END_TIMESTAMP].toString();
+ waypoint = takeout_waypoint(
+ endLoc[LOCATION_LATE7].toInt(),
+ endLoc[LOCATION_LONE7].toInt(),
+ nullptr, nullptr, ×tamp
+ );
+ n_points += track_maybe_add_wpt(route, waypoint);
+ if (!n_points) {
+ if (global_opts.debug_level >= 2) {
+ Debug(2) << "Track " << route->rte_name <<
+ ": Dropping track with no waypoints";
+ }
+ track_del_head(route);
+ }
+ return n_points;
+}
+
+void GoogleTakeoutInputStream::loadSource(const QString& source) {
+ const QFileInfo info{source};
+ if (info.isDir()) {
+ sources += readDir(source);
+ } else if (info.exists()) {
+ timelineObjects.append(readJson(source));
+ } else {
+ takeout_fatal(source + ": No such file or directory");
+ }
+}
+
+QJsonValue GoogleTakeoutInputStream::next() {
+ if (!timelineObjects.isEmpty()) {
+ QJsonValue nextObject = timelineObjects.first();
+ timelineObjects.removeFirst();
+ return nextObject;
+ }
+
+ if (!sources.isEmpty()) {
+ const QString filename = sources.first();
+ sources.removeFirst();
+ loadSource(filename);
+ return next();
+ }
+
+ return QJsonValue();
+}
--- /dev/null
+/*
+ Support reading Google Takeout Timeline Location History JSON format.
+
+ Copyright (C) 2023 Tyler MacDonald, tyler@macdonald.name
+ Copyright (C) 2023 Robert Lipe, robertlipe+source@gpsbabel.org
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ USA.
+*/
+#ifndef _GOOGLETAKEOUT_H
+#define _GOOGLETAKEOUT_H
+
+#include <QJsonObject> // for QJsonObject
+#include <QJsonValue> // for QJsonValue
+#include <QList> // for QList
+#include <QString> // for QString
+#include <QStringLiteral> // for qMakeStringPrivate, QStringLiteral
+#include <QVector> // for QVector
+
+#include "defs.h"
+#include "format.h" // for Format
+
+/*
+ * Reads Location History JSON files and return each timelineObject
+ * that should be processed.
+ *
+ * TODO: Allow date ranges
+ */
+class GoogleTakeoutInputStream
+{
+public:
+ /* Special Member Functions */
+ GoogleTakeoutInputStream() = default;
+ GoogleTakeoutInputStream(const QString& source) : sources({source}) {};
+
+ /* Member Functions */
+
+ // Returns the next timelineObject, or a null QJsonValue if we're at the end
+ QJsonValue next();
+
+private:
+ /* Member Functions */
+
+ void loadSource(const QString& source);
+
+ /* Data Members */
+
+ QList<QString> sources;
+ QList<QJsonObject> timelineObjects;
+};
+
+/* Read-only Google Timeline Location History gpsbabel Format */
+class GoogleTakeoutFormat : public Format
+{
+public:
+ /* Member functions */
+ QVector<arglist_t>* get_args() override
+ {
+ return &googletakeout_args;
+ }
+
+ ff_type get_type() const override
+ {
+ return ff_type_file;
+ }
+
+ QVector<ff_cap> get_cap() const override
+ {
+ return { ff_cap_read, ff_cap_read, ff_cap_none };
+ }
+
+ void rd_init(const QString& fname) override;
+ void read() override;
+
+private:
+ /* Constants */
+
+ const QString PLACE_VISIT = QStringLiteral("placeVisit");
+ const QString ACTIVITY_SEGMENT = QStringLiteral("activitySegment");
+ const QString ACTIVITY_TYPE = QStringLiteral("activityType");
+ const QString LOCATION = QStringLiteral("location");
+ const QString LOCATION_LATE7 = QStringLiteral("latitudeE7");
+ const QString LOCATION_LONE7 = QStringLiteral("longitudeE7");
+ const QString NAME = QStringLiteral("name");
+ const QString ADDRESS = QStringLiteral("address");
+ const QString DURATION = QStringLiteral("duration");
+ const QString START_TIMESTAMP = QStringLiteral("startTimestamp");
+ const QString START_LOCATION = QStringLiteral("startLocation");
+ const QString END_TIMESTAMP = QStringLiteral("endTimestamp");
+ const QString END_LOCATION = QStringLiteral("endLocation");
+ const QString TIMESTAMP = QStringLiteral("timestamp");
+ const QString SIMPLE_PATH = QStringLiteral("simplifiedRawPath");
+ const QString POINTS = QStringLiteral("points");
+ const QString WAYPOINT_PATH = QStringLiteral("waypointPath");
+ const QString WAYPOINTS = QStringLiteral("waypoints");
+ // for some reason that probably only a former Google engineer knows,);
+ // we use = QStringLiteral("latE7"/"lngE7" here instead of "latitudeE7"/"longitudeE7".);
+ // +10 points for brevity, but -100 points for inconsistency.);
+ const QString LATE7 = QStringLiteral("latE7");
+ const QString LONE7 = QStringLiteral("lngE7");
+
+ /* Member Functions */
+
+ void add_place_visit(const QJsonObject& placeVisit);
+ int add_activity_segment(const QJsonObject& activitySegment);
+ static void title_case(QString& title);
+
+ /* Data Members */
+
+ GoogleTakeoutInputStream inputStream;
+ QVector<arglist_t> googletakeout_args;
+};
+
+#endif /* _GOOGLETAKEOUT_H */
dg-200 GlobalSat DG-200 Download
globalsat GlobalSat GH625XT GPS training watch
kml kml Google Earth (Keyhole) Markup Language
+googletakeout json Google Takeout Location History
land_air_sea txt GPS Tracking Key Pro text
gtm gtm GPS TrackMaker
arc txt GPSBabel arc filter file
serial dg-200 GlobalSat DG-200 Download
serial globalsat GlobalSat GH625XT GPS training watch
file kml kml Google Earth (Keyhole) Markup Language
+file googletakeout json Google Takeout Location History
file land_air_sea txt GPS Tracking Key Pro text
file gtm gtm GPS TrackMaker
file arc txt GPSBabel arc filter file
serial r-r--- dg-200 GlobalSat DG-200 Download
serial --r--- globalsat GlobalSat GH625XT GPS training watch
file rwrwrw kml kml Google Earth (Keyhole) Markup Language
+file r-r--- googletakeout json Google Takeout Location History
file --rw-- land_air_sea txt GPS Tracking Key Pro text
file rwrwrw gtm gtm GPS TrackMaker
file rw---- arc txt GPSBabel arc filter file
option kml prec Precision of coordinates, number of decimals integer 6 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_prec
+file r-r--- googletakeout json Google Takeout Location History googletakeout
+ https://www.gpsbabel.org/WEB_DOC_DIR/fmt_googletakeout.html
file --rw-- land_air_sea txt GPS Tracking Key Pro text xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html
option land_air_sea snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen
--- /dev/null
+{
+ "timelineObjects": [{
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.72459
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86037
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T16:06:54.349Z",
+ "endTimestamp": "2013-06-01T16:21:54.644Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374268989,
+ "lngE7": -1221444015
+ }, {
+ "latE7": 374274597,
+ "lngE7": -1221412506
+ }, {
+ "latE7": 374284172,
+ "lngE7": -1221396179
+ }, {
+ "latE7": 374277381,
+ "lngE7": -1221402282
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1173.098617164307,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374268570,
+ "lngE7": -1221441574,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-01T16:13:41.460Z"
+ }, {
+ "latE7": 374274216,
+ "lngE7": -1221412811,
+ "accuracyMeters": 48,
+ "timestamp": "2013-06-01T16:18:41.511Z"
+ }, {
+ "latE7": 374284439,
+ "lngE7": -1221395264,
+ "accuracyMeters": 48,
+ "timestamp": "2013-06-01T16:23:04.723Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86037
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T16:21:54.644Z",
+ "endTimestamp": "2013-06-01T17:36:03.202Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374279703,
+ "centerLngE7": -1221400046,
+ "visitConfidence": 67,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.062115148
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.007737643
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0058532185
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002668936
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0025660265
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0015502889
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.001505363
+ }, {
+ "latitudeE7": 374281042,
+ "longitudeE7": -1221413747,
+ "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE",
+ "address": "150 Grant Ave F, Palo Alto, CA 94306, USA",
+ "name": "Loy D. Martin Furniture",
+ "locationConfidence": 0.0013505612
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0013012927
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T17:36:03.202Z",
+ "endTimestamp": "2013-06-01T17:39:11.793Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374297065,
+ "lngE7": -1221439895
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 457.021024820977,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T17:39:11.793Z",
+ "endTimestamp": "2013-06-01T17:43:26.262Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374297065,
+ "lngE7": -1221439895
+ }, {
+ "latE7": 374326820,
+ "lngE7": -1221520690
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 926.8831529135463,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, California 94305, United States",
+ "name": "Stanford University",
+ "locationConfidence": 71.30179
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T17:43:26.262Z",
+ "endTimestamp": "2013-06-01T17:56:06.456Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374327343,
+ "centerLngE7": -1221519329,
+ "visitConfidence": 74,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374338824,
+ "longitudeE7": -1221551957,
+ "placeId": "ChIJj8YY9SC7j4ARzqU6piSci4k",
+ "address": "25 Churchill Ave, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 19.258303
+ }, {
+ "latitudeE7": 374366525,
+ "longitudeE7": -1221566629,
+ "placeId": "ChIJ7QtCEyG7j4ARjD4nI1AAXHk",
+ "address": "50 Embarcadero Rd, Palo Alto, CA 94301, USA",
+ "name": "Palo Alto High School",
+ "locationConfidence": 4.051393
+ }, {
+ "latitudeE7": 374299808,
+ "longitudeE7": -1221478051,
+ "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow",
+ "address": "314 Stanford Ave, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.4193861
+ }, {
+ "latitudeE7": 374279660,
+ "longitudeE7": -1221544500,
+ "placeId": "ChIJRddofN66j4ARwWU2TJEnplc",
+ "address": "88 Hulme Ct, Stanford, CA 94305, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.1867815
+ }, {
+ "latitudeE7": 374312740,
+ "longitudeE7": -1221542247,
+ "placeId": "ChIJiXF8nd-6j4AREa7dHTuiDG0",
+ "locationConfidence": 0.4787603
+ }, {
+ "latitudeE7": 374315145,
+ "longitudeE7": -1221476461,
+ "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws",
+ "address": "1899 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Peers Park",
+ "locationConfidence": 0.4589858
+ }, {
+ "latitudeE7": 374343814,
+ "longitudeE7": -1221542035,
+ "placeId": "ChIJTxSSUCC7j4ARjwe7mDhsuv0",
+ "address": "Palo Alto, CA 94306, USA",
+ "name": "El Camino Field",
+ "locationConfidence": 0.19302057
+ }, {
+ "latitudeE7": 374332610,
+ "longitudeE7": -1221519470,
+ "placeId": "ChIJM-0yACC7j4AR-Ex39_J7Ufg",
+ "address": "1530 Escobita Ave, Palo Alto, CA 94306, USA",
+ "name": "Mc Fall Architecture",
+ "locationConfidence": 0.12767741
+ }, {
+ "latitudeE7": 374356682,
+ "longitudeE7": -1221532019,
+ "placeId": "ChIJB9B8ySG7j4ARm4yq36NDZC0",
+ "address": "Palo Alto, CA 94306, USA",
+ "name": "Ray Field",
+ "locationConfidence": 0.12631467
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374330734,
+ "lngE7": -1221512123,
+ "accuracyMeters": 56,
+ "timestamp": "2013-06-01T17:43:26.262Z"
+ }, {
+ "latE7": 374326747,
+ "lngE7": -1221520684,
+ "accuracyMeters": 25,
+ "timestamp": "2013-06-01T17:55:05.917Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 87.63201192843553
+ },
+ "locationConfidence": 65,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T17:56:06.456Z",
+ "endTimestamp": "2013-06-01T18:07:39.703Z"
+ },
+ "distance": 2179,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374326515,
+ "lngE7": -1221520996
+ }, {
+ "latE7": 374427719,
+ "lngE7": -1221613082
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1871.21804435659,
+ "travelMode": "DRIVE",
+ "confidence": 0.9553980370681034
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374437010,
+ "longitudeE7": -1221620860,
+ "placeId": "ChIJ4a04Fzq7j4ARUJ8Lswjw1-w",
+ "address": "167 Hamilton Ave, Palo Alto, CA 94301, USA",
+ "name": "LYFE Kitchen",
+ "locationConfidence": 29.330162
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T18:09:09.851Z",
+ "endTimestamp": "2013-06-01T19:13:04.862Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374438150,
+ "centerLngE7": -1221623022,
+ "visitConfidence": 49,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374438675,
+ "longitudeE7": -1221618460,
+ "placeId": "ChIJyaiRIjq7j4ARpFp0WP-WoNA",
+ "address": "566 Emerson St, Palo Alto, CA 94301, USA",
+ "name": "Palo Alto Creamery Downtown",
+ "locationConfidence": 12.296109
+ }, {
+ "latitudeE7": 374439958,
+ "longitudeE7": -1221619465,
+ "placeId": "ChIJxWOWGDq7j4ARpaRJE2WTdnA",
+ "address": "548 Emerson St, Palo Alto, CA 94301, USA",
+ "name": "Scotty\u0027s Bar",
+ "locationConfidence": 3.61811
+ }, {
+ "latitudeE7": 374440063,
+ "longitudeE7": -1221620824,
+ "placeId": "ChIJR1dfGDq7j4ARNpfUiUP4wn4",
+ "address": "544 Emerson St, Palo Alto, CA 94301, USA",
+ "name": "Gravity Bistro",
+ "locationConfidence": 3.4855602
+ }, {
+ "latitudeE7": 374444157,
+ "longitudeE7": -1221617461,
+ "placeId": "ChIJRzi6GDq7j4ARVC4ZzH-ZgJU",
+ "address": "547 Emerson St, Palo Alto, CA 94301, USA",
+ "name": "The Rose \u0026 Crown",
+ "locationConfidence": 2.7840734
+ }, {
+ "latitudeE7": 374439970,
+ "longitudeE7": -1221629790,
+ "placeId": "ChIJ5cmUATq7j4ARYSY3cHys344",
+ "address": "150 University Ave, Palo Alto, CA 94301, USA",
+ "name": "Amber Dhara",
+ "locationConfidence": 2.6899176
+ }, {
+ "latitudeE7": 374439220,
+ "longitudeE7": -1221612470,
+ "placeId": "ChIJoUToTjq7j4ARwuGAUEUtBlE",
+ "address": "200 Hamilton Ave, Palo Alto, CA 94301, USA",
+ "name": "Fraiche Yogurt",
+ "locationConfidence": 2.1683593
+ }, {
+ "latitudeE7": 374442187,
+ "longitudeE7": -1221610581,
+ "placeId": "ChIJY0yKLzq7j4ARNNLYPbJMgN8",
+ "address": "236 Hamilton Ave, Palo Alto, CA 94301, USA",
+ "name": "Reposado",
+ "locationConfidence": 2.162811
+ }, {
+ "latitudeE7": 374442701,
+ "longitudeE7": -1221618089,
+ "placeId": "ChIJaQ6tGDq7j4ARZ8PYbWmeW44",
+ "address": "543 Emerson St, Palo Alto, CA 94301, USA",
+ "name": "Thaiphoon Restaurant",
+ "locationConfidence": 1.9868134
+ }, {
+ "latitudeE7": 374447235,
+ "longitudeE7": -1221614973,
+ "placeId": "ChIJY5UIijm7j4ARPkLgY0DXJuI",
+ "address": "538 Ramona St, Palo Alto, CA 94301, USA",
+ "name": "Coupa Cafe - Ramona",
+ "locationConfidence": 1.9187678
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 31,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T19:13:04.862Z",
+ "endTimestamp": "2013-06-01T19:31:19.735Z"
+ },
+ "distance": 775,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374440116,
+ "lngE7": -1221617965
+ }, {
+ "latE7": 374470024,
+ "lngE7": -1221604690
+ }, {
+ "latE7": 374445495,
+ "lngE7": -1221630325
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 144.21469137636404,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374470177,
+ "lngE7": -1221604919,
+ "accuracyMeters": 35,
+ "timestamp": "2013-06-01T19:20:57.699Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T19:39:00.315Z",
+ "endTimestamp": "2013-06-01T19:54:12.602Z"
+ },
+ "distance": 829,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374384779,
+ "longitudeE7": -1221576188,
+ "placeId": "ChIJHz4XFiW7j4ARCIp120CAcFE",
+ "address": "855 El Camino Real, Palo Alto, California 94301, United States",
+ "name": "Trader Joe\u0027s",
+ "locationConfidence": 46.33747,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T19:54:30.604Z",
+ "endTimestamp": "2013-06-01T20:06:33.929Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374383833,
+ "centerLngE7": -1221577211,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374384977,
+ "longitudeE7": -1221591879,
+ "placeId": "ChIJhUpxHiW7j4AR0lvMzwc8uhk",
+ "address": "855 El Camino Real, Palo Alto, CA 94301, USA",
+ "name": "Town \u0026 Country Village",
+ "locationConfidence": 28.721172,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, CA 94305, USA",
+ "name": "Stanford University",
+ "locationConfidence": 7.97669
+ }, {
+ "latitudeE7": 374386402,
+ "longitudeE7": -1221603598,
+ "placeId": "ChIJDzte4iS7j4ARJFjeDhtStzw",
+ "address": "855 El Camino Real Suite 13A, Palo Alto, CA 94301, USA",
+ "name": "The UPS Store",
+ "locationConfidence": 3.4571042
+ }, {
+ "latitudeE7": 374383508,
+ "longitudeE7": -1221583303,
+ "placeId": "ChIJHz4XFiW7j4ARH8LOCdB6-30",
+ "locationConfidence": 1.6761993
+ }, {
+ "latitudeE7": 374382568,
+ "longitudeE7": -1221585946,
+ "placeId": "ChIJEbMpYCS7j4ARmll1sL_js4c",
+ "address": "855 El Camino Real, Palo Alto, CA 94301, USA",
+ "name": "Mayfield Bakery \u0026 Cafe",
+ "locationConfidence": 1.0580846
+ }, {
+ "latitudeE7": 374385004,
+ "longitudeE7": -1221591828,
+ "placeId": "ChIJHz4XFiW7j4ARM4P24wXToXo",
+ "address": "1604 Laurel St, San Carlos, CA 94070, USA",
+ "name": "The Coin Broker",
+ "locationConfidence": 0.9215652
+ }, {
+ "latitudeE7": 374384600,
+ "longitudeE7": -1221589024,
+ "placeId": "ChIJHz4XFiW7j4ARRqxJ_xOCzeM",
+ "address": "855 El Camino Real, Palo Alto, CA 94301, USA",
+ "name": "CVS",
+ "locationConfidence": 0.8772216
+ }, {
+ "latitudeE7": 374386485,
+ "longitudeE7": -1221586839,
+ "placeId": "ChIJHz4XFiW7j4ARj31OtMrm-v8",
+ "locationConfidence": 0.59254056
+ }, {
+ "latitudeE7": 374433038,
+ "longitudeE7": -1221699097,
+ "placeId": "ChIJ9xcroCS7j4ARgQUa9e7_BLk",
+ "address": "180 El Camino Real, Stanford Shopping Center, Palo Alto, CA 94304, USA",
+ "name": "Anthropologie \u0026 Co.",
+ "locationConfidence": 0.5527861
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 44,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T20:06:33.929Z",
+ "endTimestamp": "2013-06-01T20:20:38.838Z"
+ },
+ "distance": 1776,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374382743,
+ "lngE7": -1221579818
+ }, {
+ "latE7": 374350891,
+ "lngE7": -1221520614
+ }, {
+ "latE7": 374324913,
+ "lngE7": -1221519165
+ }, {
+ "latE7": 374294128,
+ "lngE7": -1221434631
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2249.946549858231,
+ "travelMode": "DRIVE",
+ "confidence": 0.9806894240403187
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374351196,
+ "lngE7": -1221520309,
+ "accuracyMeters": 43,
+ "timestamp": "2013-06-01T20:09:36.034Z"
+ }, {
+ "latE7": 374326210,
+ "lngE7": -1221517334,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-01T20:14:22.560Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86128
+ },
+ "duration": {
+ "startTimestamp": "2013-06-01T20:22:37.047Z",
+ "endTimestamp": "2013-06-02T15:57:14.614Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280363,
+ "centerLngE7": -1221399258,
+ "visitConfidence": 94,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.057618715
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0128383795
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.008319062
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.003282504
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0030701684
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0019574037
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019147097
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019016122
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y",
+ "address": "2625 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Intertec",
+ "locationConfidence": 0.0014424316
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86128
+ },
+ "endLocation": {
+ "latitudeE7": 374263542,
+ "longitudeE7": -1221445037,
+ "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o",
+ "address": "405 California Avenue, Palo Alto, California 94306, United States",
+ "name": "Joanie\u0027s Cafe",
+ "locationConfidence": 9.768986
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T15:57:14.614Z",
+ "endTimestamp": "2013-06-02T16:07:01.748Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374262657,
+ "lngE7": -1221453247
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 721.48090442587,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374263542,
+ "longitudeE7": -1221445037,
+ "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o",
+ "address": "405 California Avenue, Palo Alto, California 94306, United States",
+ "name": "Joanie\u0027s Cafe",
+ "locationConfidence": 9.768986
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T16:07:01.748Z",
+ "endTimestamp": "2013-06-02T16:17:45.347Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374262900,
+ "centerLngE7": -1221449400,
+ "visitConfidence": 65,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374260050,
+ "longitudeE7": -1221447975,
+ "placeId": "ChIJA_0-8-W6j4ARRLCg6K5oT6k",
+ "address": "344 California Ave, Palo Alto, CA 94306, USA",
+ "name": "ZombieRunner",
+ "locationConfidence": 8.407062
+ }, {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "locationConfidence": 7.112252
+ }, {
+ "latitudeE7": 374261647,
+ "longitudeE7": -1221453776,
+ "placeId": "ChIJc37X8eW6j4ARCGK8720jjo8",
+ "address": "440 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Country Sun Natural Foods",
+ "locationConfidence": 6.7914143
+ }, {
+ "latitudeE7": 374257860,
+ "longitudeE7": -1221449910,
+ "placeId": "ChIJl9hU8eW6j4ARyypp2dPEMMs",
+ "address": "445 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Cafe Brioche",
+ "locationConfidence": 3.0552402
+ }, {
+ "latitudeE7": 374254084,
+ "longitudeE7": -1221453292,
+ "placeId": "ChIJ06EYWO-6j4AR5x1zss9iick",
+ "address": "477 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Izzy\u0027s Brooklyn Bagels",
+ "locationConfidence": 2.8131847
+ }, {
+ "latitudeE7": 374261314,
+ "longitudeE7": -1221447284,
+ "placeId": "ChIJcW8mjeW6j4ARG6xox36yV_c",
+ "address": "421 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Subway Restaurants",
+ "locationConfidence": 2.7407508
+ }, {
+ "latitudeE7": 374260321,
+ "longitudeE7": -1221449085,
+ "placeId": "ChIJ81pr8-W6j4ARg2IXxFP2xHM",
+ "locationConfidence": 2.262629
+ }, {
+ "latitudeE7": 374265798,
+ "longitudeE7": -1221444315,
+ "placeId": "ChIJKxrOk-W6j4ARhyl5J5TSpeA",
+ "address": "2431 Ash St, Palo Alto, CA 94306, USA",
+ "name": "Hotel California",
+ "locationConfidence": 1.8503582
+ }, {
+ "latitudeE7": 374259827,
+ "longitudeE7": -1221448895,
+ "placeId": "ChIJEWzP8uW6j4ARkmIR7vba8es",
+ "address": "433 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Mediterranean Wraps",
+ "locationConfidence": 1.8091133
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 15,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374263542,
+ "longitudeE7": -1221445037,
+ "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o",
+ "address": "405 California Avenue, Palo Alto, California 94306, United States",
+ "name": "Joanie\u0027s Cafe",
+ "locationConfidence": 9.768986
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.87275
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T16:17:45.347Z",
+ "endTimestamp": "2013-06-02T16:28:51.495Z"
+ },
+ "distance": 389,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.87275
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T16:29:21.689Z",
+ "endTimestamp": "2013-06-02T18:29:21.499Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374278617,
+ "centerLngE7": -1221400775,
+ "visitConfidence": 71,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.07287146
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.004364156
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0039560585
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002404972
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0020340018
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0016186573
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.001473802
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0013104825
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0012320128
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T18:29:21.499Z",
+ "endTimestamp": "2013-06-02T19:10:28.033Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374279899,
+ "lngE7": -1221404037
+ }, {
+ "latE7": 376160697,
+ "lngE7": -1223919448
+ }, {
+ "latE7": 376147346,
+ "lngE7": -1223901138
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 35697.07778089458,
+ "travelMode": "DRIVE",
+ "confidence": 0.9975802802083932
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 376165276,
+ "lngE7": -1223921204,
+ "accuracyMeters": 67,
+ "timestamp": "2013-06-02T18:58:02.227Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T19:16:07.698Z",
+ "endTimestamp": "2013-06-02T19:18:26.596Z"
+ },
+ "distance": 181,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 376157760,
+ "lngE7": -1223904800
+ }, {
+ "latE7": 376161270,
+ "lngE7": -1223918685
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 174.9217375050344,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T19:23:21.741Z",
+ "endTimestamp": "2013-06-02T19:52:14.958Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 376160926,
+ "lngE7": -1223918609
+ }, {
+ "latE7": 374547348,
+ "lngE7": -1221779861
+ }, {
+ "latE7": 374542007,
+ "lngE7": -1221821899
+ }, {
+ "latE7": 374514579,
+ "lngE7": -1221790008
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 30572.438261598676,
+ "travelMode": "DRIVE",
+ "confidence": 0.6081411580711813
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374546623,
+ "lngE7": -1221776733,
+ "accuracyMeters": 43,
+ "timestamp": "2013-06-02T19:48:06.612Z"
+ }, {
+ "latE7": 374544449,
+ "lngE7": -1221819382,
+ "accuracyMeters": 65,
+ "timestamp": "2013-06-02T19:49:08.298Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374505321,
+ "longitudeE7": -1221791572,
+ "placeId": "ChIJ33JzmLOkj4ARisZhlgHYIYE",
+ "address": "525 El Camino Real, Menlo Park, California 94025, United States",
+ "name": "Safeway",
+ "locationConfidence": 76.55585,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T19:52:14.958Z",
+ "endTimestamp": "2013-06-02T20:07:24.315Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374506715,
+ "centerLngE7": -1221790431,
+ "visitConfidence": 68,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374516231,
+ "longitudeE7": -1221783425,
+ "placeId": "ChIJs07KSbKkj4AR1VKhCks5GqM",
+ "address": "700 El Camino Real Ste 120, Menlo Park, CA 94025, USA",
+ "name": "Staples",
+ "locationConfidence": 2.0642905
+ }, {
+ "latitudeE7": 374521241,
+ "longitudeE7": -1221792228,
+ "placeId": "ChIJs07KSbKkj4ARVxf6CBCeNxw",
+ "address": "700 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "BevMo!",
+ "locationConfidence": 1.953718
+ }, {
+ "latitudeE7": 374512870,
+ "longitudeE7": -1221779020,
+ "placeId": "ChIJd3tdSbKkj4AR81em9l8W01o",
+ "address": "700 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "Big 5 Sporting Goods",
+ "locationConfidence": 1.3189399
+ }, {
+ "latitudeE7": 374507447,
+ "longitudeE7": -1221779054,
+ "placeId": "ChIJxV5zpLOkj4ARc27tjIwQkRE",
+ "address": "Menlo Park, CA 94025, USA",
+ "name": "El Camino Real \u0026 Middle Ave",
+ "locationConfidence": 1.0983325
+ }, {
+ "latitudeE7": 374496540,
+ "longitudeE7": -1221782950,
+ "placeId": "ChIJufxUv7Okj4AR9_5v2USTvb0",
+ "address": "515 El Camino Real Suite 110, Menlo Park, CA 94025, USA",
+ "name": "Rubio\u0027s Coastal Grill",
+ "locationConfidence": 1.0081108,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374495670,
+ "longitudeE7": -1221781730,
+ "placeId": "ChIJufxUv7Okj4ARlVIu8V2VYt4",
+ "address": "515 El Camino Real #100, Menlo Park, CA 94025, USA",
+ "name": "Peet\u0027s Coffee",
+ "locationConfidence": 0.97191477,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374504170,
+ "longitudeE7": -1221788500,
+ "placeId": "ChIJufxUv7Okj4ARXK6nW9S3YzA",
+ "locationConfidence": 0.8859845,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374497014,
+ "longitudeE7": -1221784265,
+ "placeId": "ChIJufxUv7Okj4ARDu1dffwHGA4",
+ "address": "515 El Camino Real Suite 120, Menlo Park, CA 94025, USA",
+ "name": "Unleashed by Petco",
+ "locationConfidence": 0.8723743
+ }, {
+ "latitudeE7": 374505832,
+ "longitudeE7": -1221789524,
+ "placeId": "ChIJL1q9x7Okj4ARx8KC9hJ8PJU",
+ "locationConfidence": 0.7733364,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 69,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T20:07:24.315Z",
+ "endTimestamp": "2013-06-02T20:09:29.612Z"
+ },
+ "distance": 142,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374504508,
+ "lngE7": -1221787109
+ }, {
+ "latE7": 374499549,
+ "lngE7": -1221775588
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 130.4544290242415,
+ "travelMode": "WALK",
+ "confidence": 0.9697007556340363
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T20:09:29.612Z",
+ "endTimestamp": "2013-06-02T20:19:07.253Z"
+ },
+ "distance": 4411,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374499740,
+ "lngE7": -1221775970
+ }, {
+ "latE7": 374280281,
+ "lngE7": -1221404647
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4504.9799415806865,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.87351
+ },
+ "duration": {
+ "startTimestamp": "2013-06-02T20:19:07.253Z",
+ "endTimestamp": "2013-06-03T15:41:49.363Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280446,
+ "centerLngE7": -1221399197,
+ "visitConfidence": 95,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.05777613
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.008644854
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.004431778
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0033590165
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0031576427
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020125026
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019460546
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019408338
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y",
+ "address": "2625 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Intertec",
+ "locationConfidence": 0.0014721825
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T15:41:49.363Z",
+ "endTimestamp": "2013-06-03T16:03:56.130Z"
+ },
+ "distance": 4244,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277954,
+ "lngE7": -1221410446
+ }, {
+ "latE7": 374156799,
+ "lngE7": -1221026153
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5318.512445430101,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T16:04:54.376Z",
+ "endTimestamp": "2013-06-03T16:20:20.960Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374156799,
+ "lngE7": -1221026153
+ }, {
+ "latE7": 374079971,
+ "lngE7": -1221089630
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1247.423068833269,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374076193,
+ "longitudeE7": -1221113035,
+ "placeId": "ChIJUwpM8XW6j4ARD2AsKqjKG90",
+ "address": "230 San Antonio Circle, Mountain View, California 94040-1276, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 39.604214
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T16:20:20.960Z",
+ "endTimestamp": "2013-06-03T16:32:28.388Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374075660,
+ "centerLngE7": -1221091830,
+ "visitConfidence": 57,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374071570,
+ "longitudeE7": -1221072310,
+ "placeId": "ChIJpf5C7Z-wj4ARQc1h-aLf56E",
+ "locationConfidence": 16.313314
+ }, {
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 14.344387
+ }, {
+ "latitudeE7": 374079966,
+ "longitudeE7": -1221091438,
+ "placeId": "ChIJFUlBgnW6j4ARrglNuMK3SJc",
+ "address": "100 San Antonio Cir, Mountain View, CA 94040, USA",
+ "name": "Franciscan Glass Company, Inc",
+ "locationConfidence": 3.397736
+ }, {
+ "latitudeE7": 374087454,
+ "longitudeE7": -1221100611,
+ "placeId": "ChIJaeE8h3W6j4AR7as0vi4zwBw",
+ "address": "134 San Antonio Cir, Mountain View, CA 94040, USA",
+ "name": "Bruce Bauer Lumber \u0026 Supply",
+ "locationConfidence": 2.9142084
+ }, {
+ "latitudeE7": 374072570,
+ "longitudeE7": -1221071328,
+ "placeId": "ChIJZ2hC35-wj4ARoNmT4OfyKz8",
+ "address": "190 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "San Antonio",
+ "locationConfidence": 2.2072754
+ }, {
+ "latitudeE7": 374067434,
+ "longitudeE7": -1221089961,
+ "placeId": "ChIJY3TXNla6j4ARbxMzhlnw_LI",
+ "address": "1650 S Amphlett Blvd Suite 213, San Mateo, CA 94402, USA",
+ "name": "Matrix Consulting Group",
+ "locationConfidence": 1.1335881
+ }, {
+ "latitudeE7": 374078723,
+ "longitudeE7": -1221095172,
+ "placeId": "ChIJ66d7gXW6j4ARvPYQpPNUHPo",
+ "locationConfidence": 1.1071953
+ }, {
+ "latitudeE7": 374085869,
+ "longitudeE7": -1221095409,
+ "placeId": "ChIJcVGzADe7j4ARXAFi9e7R97Y",
+ "address": "126 San Antonio Cir, Mountain View, CA 94040, USA",
+ "name": "Stanford Electric Works",
+ "locationConfidence": 1.0725551
+ }, {
+ "latitudeE7": 374058833,
+ "longitudeE7": -1221103198,
+ "placeId": "ChIJdSE1Lp6wj4ARzamoy7P6y1I",
+ "address": "2500 California St, Mountain View, CA 94040, USA",
+ "name": "Planned Parenthood - Mountain View Health Center",
+ "locationConfidence": 1.0073286
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 39,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374076193,
+ "longitudeE7": -1221113035,
+ "placeId": "ChIJUwpM8XW6j4ARD2AsKqjKG90",
+ "address": "230 San Antonio Circle, Mountain View, California 94040-1276, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 39.604214
+ },
+ "endLocation": {
+ "latitudeE7": 373989510,
+ "longitudeE7": -1221108105,
+ "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4",
+ "address": "4800 El Camino Real, Los Altos, California 94022, United States",
+ "name": "Whole Foods Market",
+ "locationConfidence": 62.967205
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T16:32:29.462Z",
+ "endTimestamp": "2013-06-03T16:48:30.892Z"
+ },
+ "distance": 861,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374063491,
+ "lngE7": -1221093597
+ }, {
+ "latE7": 373994750,
+ "lngE7": -1221099853
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1052.288310100607,
+ "travelMode": "WALK",
+ "confidence": 0.9481365401597555
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 373989510,
+ "longitudeE7": -1221108105,
+ "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4",
+ "address": "4800 El Camino Real, Los Altos, California 94022, United States",
+ "name": "Whole Foods Market",
+ "locationConfidence": 62.967205
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T16:48:30.892Z",
+ "endTimestamp": "2013-06-03T17:18:50.606Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 373993723,
+ "centerLngE7": -1221102645,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 12.419312
+ }, {
+ "latitudeE7": 373998779,
+ "longitudeE7": -1221102288,
+ "placeId": "ChIJMV15pZmwj4ARLhxqmN3SfWI",
+ "address": "2500 W El Camino Real Suite A, Mountain View, CA 94040, USA",
+ "name": "Subway Restaurants",
+ "locationConfidence": 3.5384083
+ }, {
+ "latitudeE7": 373992577,
+ "longitudeE7": -1221093791,
+ "placeId": "ChIJYRIzNZiwj4ARs5HjvT7t39c",
+ "address": "2495 Old Middlefield Way, Mountain View, CA 94043, USA",
+ "name": "Artisan Wine Depot Mountain View",
+ "locationConfidence": 2.3603964
+ }, {
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 2.3025334
+ }, {
+ "latitudeE7": 373999200,
+ "longitudeE7": -1221102420,
+ "placeId": "ChIJz5Mtu5mwj4AR679m6EywSwE",
+ "address": "2510 W El Camino Real Suite 1, Mountain View, CA 94040, USA",
+ "name": "Chase Bank",
+ "locationConfidence": 1.8998272
+ }, {
+ "latitudeE7": 373989695,
+ "longitudeE7": -1221109199,
+ "placeId": "ChIJ47ZNlJmwj4ARYmY9rk3I2XA",
+ "address": "4800 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "Smitten Ice Cream",
+ "locationConfidence": 1.5124466
+ }, {
+ "latitudeE7": 373999675,
+ "longitudeE7": -1221103015,
+ "placeId": "ChIJRbhVMpmwj4ARFN11xeuK8jc",
+ "address": "2510 W El Camino Real Suite 2, Mountain View, CA 94040, USA",
+ "name": "GNC",
+ "locationConfidence": 1.3595289
+ }, {
+ "latitudeE7": 373994171,
+ "longitudeE7": -1221095778,
+ "placeId": "ChIJg_36s5mwj4ARtuKchhBm53o",
+ "address": "2496 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "Gingko Home Furnishings",
+ "locationConfidence": 1.0380085
+ }, {
+ "latitudeE7": 373989840,
+ "longitudeE7": -1221097530,
+ "placeId": "ChIJdTCgyZmwj4AR0mz4VwJQmfM",
+ "address": "4844 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "See\u0027s Candies",
+ "locationConfidence": 0.5469871
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 58,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 373989510,
+ "longitudeE7": -1221108105,
+ "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4",
+ "address": "4800 El Camino Real, Los Altos, California 94022, United States",
+ "name": "Whole Foods Market",
+ "locationConfidence": 62.967205
+ },
+ "endLocation": {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Drive, Mountain View, California 94040, United States",
+ "name": "Walmart",
+ "locationConfidence": 74.15459,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:18:50.606Z",
+ "endTimestamp": "2013-06-03T17:22:17.443Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 373993568,
+ "lngE7": -1221103057
+ }, {
+ "latE7": 374010658,
+ "lngE7": -1221090850
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 296.1594081907772,
+ "travelMode": "WALK",
+ "confidence": 0.9634012950102394
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Drive, Mountain View, California 94040, United States",
+ "name": "Walmart",
+ "locationConfidence": 74.15459,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:22:17.443Z",
+ "endTimestamp": "2013-06-03T17:32:22.663Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374011388,
+ "centerLngE7": -1221092362,
+ "visitConfidence": 73,
+ "otherCandidateLocations": [{
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 10.212976
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJq0BZBZmwj4ARL9oe-W9j7Dw",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart Pharmacy",
+ "locationConfidence": 4.3897634
+ }, {
+ "latitudeE7": 374020870,
+ "longitudeE7": -1221107610,
+ "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM",
+ "address": "590 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Trader Joe\u0027s",
+ "locationConfidence": 1.8930695
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 1.61336
+ }, {
+ "latitudeE7": 374008487,
+ "longitudeE7": -1221097098,
+ "placeId": "ChIJryH6Apmwj4ARCdkltkKzGxQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "McDonald\u0027s",
+ "locationConfidence": 1.1141142
+ }, {
+ "latitudeE7": 373989510,
+ "longitudeE7": -1221108105,
+ "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4",
+ "address": "4800 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "Whole Foods Market",
+ "locationConfidence": 0.6182512
+ }, {
+ "latitudeE7": 374008000,
+ "longitudeE7": -1221100000,
+ "placeId": "ChIJq0BZBZmwj4ARpAJYd2P5_BY",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart Photo Center",
+ "locationConfidence": 0.4036913
+ }, {
+ "latitudeE7": 374007876,
+ "longitudeE7": -1221060830,
+ "placeId": "ChIJq9ZWgKKwj4ARvAcUB1cNp-k",
+ "address": "555 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Target",
+ "locationConfidence": 0.35849935
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 0.2864842,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 67,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:32:22.663Z",
+ "endTimestamp": "2013-06-03T17:35:17.183Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374010658,
+ "lngE7": -1221090850
+ }, {
+ "latE7": 373997688,
+ "lngE7": -1221100234
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 246.93541686406158,
+ "travelMode": "WALK",
+ "confidence": 0.8986892474224059
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:35:17.183Z",
+ "endTimestamp": "2013-06-03T17:47:06.145Z"
+ },
+ "distance": 4242,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 373997688,
+ "lngE7": -1221100234
+ }, {
+ "latE7": 374274482,
+ "lngE7": -1221424484
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4702.990971400093,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:47:30.640Z",
+ "endTimestamp": "2013-06-03T17:49:17.986Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374274291,
+ "lngE7": -1221424102
+ }, {
+ "latE7": 374277153,
+ "lngE7": -1221409072
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 194.17192210534586,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.861115
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T17:49:17.986Z",
+ "endTimestamp": "2013-06-03T19:42:37.891Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280203,
+ "centerLngE7": -1221399627,
+ "visitConfidence": 65,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.058173046
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.012335602
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.00760076
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.003148433
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0029011993
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0022993148
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0018662211
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0018227977
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0018014737
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.861115
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85523
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T19:42:37.891Z",
+ "endTimestamp": "2013-06-03T20:08:46.044Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374253959,
+ "lngE7": -1221373977
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1380.821159718965,
+ "travelMode": "DRIVE",
+ "confidence": 0.9386709257199035
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374255447,
+ "lngE7": -1221373520,
+ "accuracyMeters": 43,
+ "timestamp": "2013-06-03T19:46:08.887Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85523
+ },
+ "duration": {
+ "startTimestamp": "2013-06-03T20:08:46.044Z",
+ "endTimestamp": "2013-06-04T14:42:19.391Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280454,
+ "centerLngE7": -1221399217,
+ "visitConfidence": 94,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.057861406
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0130009325
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.008661119
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0033667088
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0031647647
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0024232469
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020187304
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019449721
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019411902
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T14:42:19.391Z",
+ "endTimestamp": "2013-06-04T14:53:03.787Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374780693,
+ "lngE7": -1221543579
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 8850.979637190687,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T14:53:03.787Z",
+ "endTimestamp": "2013-06-04T14:56:47.682Z"
+ },
+ "distance": 1185,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374780845,
+ "lngE7": -1221543960
+ }, {
+ "latE7": 374856643,
+ "lngE7": -1221470031
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1350.0800018887721,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 78.15475
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T14:56:47.682Z",
+ "endTimestamp": "2013-06-04T15:14:50.936Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374857221,
+ "centerLngE7": -1221470300,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 13.087156
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 6.6574435
+ }, {
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 2.052949
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.039438672
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.008265508
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 70,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T15:14:50.936Z",
+ "endTimestamp": "2013-06-04T15:20:19.663Z"
+ },
+ "distance": 428,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T15:20:19.663Z",
+ "endTimestamp": "2013-06-04T15:32:17.602Z"
+ },
+ "distance": 934,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T15:32:17.602Z",
+ "endTimestamp": "2013-06-04T15:57:00.960Z"
+ },
+ "distance": 12129,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374746475,
+ "lngE7": -1221535949
+ }, {
+ "latE7": 374760169,
+ "lngE7": -1221542739
+ }, {
+ "latE7": 374784545,
+ "lngE7": -1221717453
+ }, {
+ "latE7": 374313392,
+ "lngE7": -1221136169
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7308.155516892957,
+ "travelMode": "DRIVE",
+ "confidence": 0.9734542702452232
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374756584,
+ "lngE7": -1221544113,
+ "accuracyMeters": 89,
+ "timestamp": "2013-06-04T15:33:36.389Z"
+ }, {
+ "latE7": 374784126,
+ "lngE7": -1221717834,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-04T15:38:46.251Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T16:03:06.136Z",
+ "endTimestamp": "2013-06-04T16:15:47.877Z"
+ },
+ "distance": 4090,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374313507,
+ "lngE7": -1221136322
+ }, {
+ "latE7": 374296951,
+ "lngE7": -1221217651
+ }, {
+ "latE7": 374272766,
+ "lngE7": -1221436157
+ }, {
+ "latE7": 374258728,
+ "lngE7": -1221469802
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4525.336859905837,
+ "travelMode": "DRIVE",
+ "confidence": 0.997383759421781
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374297104,
+ "lngE7": -1221217804,
+ "accuracyMeters": 79,
+ "timestamp": "2013-06-04T16:05:14.766Z"
+ }, {
+ "latE7": 374272766,
+ "lngE7": -1221436157,
+ "accuracyMeters": 29,
+ "timestamp": "2013-06-04T16:10:36.618Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T16:15:47.877Z",
+ "endTimestamp": "2013-06-04T16:21:08.618Z"
+ },
+ "distance": 555,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84853
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T16:21:47.537Z",
+ "endTimestamp": "2013-06-04T22:54:13.094Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280342,
+ "centerLngE7": -1221401880,
+ "visitConfidence": 83,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.072244935
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.010869744
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.006993783
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0033895273
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0030005171
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0021944554
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020844415
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016250901
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0015869089
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84853
+ },
+ "endLocation": {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Drive, Mountain View, California 94040, United States",
+ "name": "Walmart",
+ "locationConfidence": 71.84966,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T22:54:13.094Z",
+ "endTimestamp": "2013-06-04T23:15:47.347Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374284286,
+ "lngE7": -1221400451
+ }, {
+ "latE7": 374313011,
+ "lngE7": -1221135559
+ }, {
+ "latE7": 374013748,
+ "lngE7": -1221136093
+ }, {
+ "latE7": 374015464,
+ "lngE7": -1221087722
+ }, {
+ "latE7": 374011039,
+ "lngE7": -1221103668
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4876.3235980492145,
+ "travelMode": "DRIVE",
+ "confidence": 0.8311646540699785
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374308395,
+ "lngE7": -1221140213,
+ "accuracyMeters": 25,
+ "timestamp": "2013-06-04T23:04:20.854Z"
+ }, {
+ "latE7": 374015198,
+ "lngE7": -1221135559,
+ "accuracyMeters": 39,
+ "timestamp": "2013-06-04T23:14:30.731Z"
+ }, {
+ "latE7": 374016304,
+ "lngE7": -1221089249,
+ "accuracyMeters": 72,
+ "timestamp": "2013-06-04T23:16:51.282Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Drive, Mountain View, California 94040, United States",
+ "name": "Walmart",
+ "locationConfidence": 71.84966,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T23:15:47.347Z",
+ "endTimestamp": "2013-06-04T23:29:17.938Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374012364,
+ "centerLngE7": -1221094929,
+ "visitConfidence": 69,
+ "otherCandidateLocations": [{
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 10.753091
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJq0BZBZmwj4ARL9oe-W9j7Dw",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart Pharmacy",
+ "locationConfidence": 6.8233542,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374020870,
+ "longitudeE7": -1221107610,
+ "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM",
+ "address": "590 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Trader Joe\u0027s",
+ "locationConfidence": 2.5086367
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 0.852471
+ }, {
+ "latitudeE7": 374008487,
+ "longitudeE7": -1221097098,
+ "placeId": "ChIJryH6Apmwj4ARCdkltkKzGxQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "McDonald\u0027s",
+ "locationConfidence": 0.64703417
+ }, {
+ "latitudeE7": 373989510,
+ "longitudeE7": -1221108105,
+ "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4",
+ "address": "4800 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "Whole Foods Market",
+ "locationConfidence": 0.5339054
+ }, {
+ "latitudeE7": 374010476,
+ "longitudeE7": -1221109462,
+ "placeId": "ChIJ8ZTVZJmwj4ARQFv0RXspg3A",
+ "address": "2560 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "Chili\u0027s Grill \u0026 Bar",
+ "locationConfidence": 0.51158804
+ }, {
+ "latitudeE7": 374017565,
+ "longitudeE7": -1221118174,
+ "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc",
+ "address": "645 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Safeway",
+ "locationConfidence": 0.51081145
+ }, {
+ "latitudeE7": 374008000,
+ "longitudeE7": -1221100000,
+ "placeId": "ChIJq0BZBZmwj4ARpAJYd2P5_BY",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart Photo Center",
+ "locationConfidence": 0.3103645
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 65,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Drive, Mountain View, California 94040, United States",
+ "name": "Walmart",
+ "locationConfidence": 71.84966,
+ "isCurrentLocation": true
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84766
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T23:29:17.938Z",
+ "endTimestamp": "2013-06-04T23:37:41.070Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374016571,
+ "lngE7": -1221093673
+ }, {
+ "latE7": 374275093,
+ "lngE7": -1221414260
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4999.039742833692,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84766
+ },
+ "duration": {
+ "startTimestamp": "2013-06-04T23:37:41.070Z",
+ "endTimestamp": "2013-06-05T14:55:14.875Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280269,
+ "centerLngE7": -1221401982,
+ "visitConfidence": 92,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.07386564
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0109617915
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0068934723
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0034019735
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0029948305
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0022132208
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020840254
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016295755
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0015958296
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84766
+ },
+ "endLocation": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 89.144646
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T14:55:19.636Z",
+ "endTimestamp": "2013-06-05T15:15:42.862Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374280662,
+ "lngE7": -1221405258
+ }, {
+ "latE7": 374328346,
+ "lngE7": -1221282272
+ }, {
+ "latE7": 374331092,
+ "lngE7": -1221165084
+ }, {
+ "latE7": 374366798,
+ "lngE7": -1221220779
+ }, {
+ "latE7": 374851951,
+ "lngE7": -1221498794
+ }, {
+ "latE7": 374853019,
+ "lngE7": -1221464233
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 9810.80696112748,
+ "travelMode": "DRIVE",
+ "confidence": 0.9938828037665143
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374328156,
+ "lngE7": -1221279907,
+ "accuracyMeters": 51,
+ "timestamp": "2013-06-05T14:58:18.877Z"
+ }, {
+ "latE7": 374331474,
+ "lngE7": -1221165466,
+ "accuracyMeters": 39,
+ "timestamp": "2013-06-05T15:01:19.284Z"
+ }, {
+ "latE7": 374366188,
+ "lngE7": -1221220169,
+ "accuracyMeters": 31,
+ "timestamp": "2013-06-05T15:03:28.641Z"
+ }, {
+ "latE7": 374850502,
+ "lngE7": -1221500397,
+ "accuracyMeters": 40,
+ "timestamp": "2013-06-05T15:14:19.137Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 89.144646
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T15:15:42.862Z",
+ "endTimestamp": "2013-06-05T22:36:38.988Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374856442,
+ "centerLngE7": -1221482937,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 6.951619
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 2.4419627
+ }, {
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.1574366
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.14667459
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.10132071
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k",
+ "locationConfidence": 0.056344282
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374858333,
+ "lngE7": -1221462216,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-05T15:17:48.976Z"
+ }, {
+ "latE7": 374858333,
+ "lngE7": -1221462216,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-05T15:20:12.165Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:41:23.196Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:42:34.973Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:43:37.506Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:44:37.575Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:45:39.874Z"
+ }, {
+ "latE7": 374852380,
+ "lngE7": -1221479613,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T18:48:24.882Z"
+ }, {
+ "latE7": 374844917,
+ "lngE7": -1221487525,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-05T19:50:18.724Z"
+ }, {
+ "latE7": 374840502,
+ "lngE7": -1221489391,
+ "accuracyMeters": 23,
+ "timestamp": "2013-06-05T19:52:06.048Z"
+ }, {
+ "latE7": 374857445,
+ "lngE7": -1221485314,
+ "accuracyMeters": 21,
+ "timestamp": "2013-06-05T20:57:30.281Z"
+ }, {
+ "latE7": 374856735,
+ "lngE7": -1221477489,
+ "accuracyMeters": 37,
+ "timestamp": "2013-06-05T22:31:47.074Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1270.834456704224
+ },
+ "locationConfidence": 79,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T22:36:38.988Z",
+ "endTimestamp": "2013-06-05T22:47:20.361Z"
+ },
+ "distance": 5657,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374857749,
+ "lngE7": -1221489181
+ }, {
+ "latE7": 374383392,
+ "lngE7": -1221247024
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7601.6993079649565,
+ "travelMode": "DRIVE",
+ "confidence": 0.9833036502135002
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T22:47:20.361Z",
+ "endTimestamp": "2013-06-05T22:57:25.719Z"
+ },
+ "distance": 1935,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374383659,
+ "lngE7": -1221246719
+ }, {
+ "latE7": 374316787,
+ "lngE7": -1221140823
+ }, {
+ "latE7": 374316215,
+ "lngE7": -1221141433
+ }, {
+ "latE7": 374323196,
+ "lngE7": -1221152420
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1069.4752634042381,
+ "travelMode": "WALK",
+ "confidence": 0.7836439879357618
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374307175,
+ "lngE7": -1221142273,
+ "accuracyMeters": 52,
+ "timestamp": "2013-06-05T22:53:30.246Z"
+ }, {
+ "latE7": 374307137,
+ "lngE7": -1221142426,
+ "accuracyMeters": 69,
+ "timestamp": "2013-06-05T22:54:33.573Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374323416,
+ "longitudeE7": -1221152229
+ },
+ "endLocation": {
+ "latitudeE7": 374322469,
+ "longitudeE7": -1221275808
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T22:57:25.719Z",
+ "endTimestamp": "2013-06-05T22:59:48.989Z"
+ },
+ "distance": 1336,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374292698,
+ "lngE7": -1221222877,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-05T22:58:48.265Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1283.9392677874
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T23:09:31.587Z",
+ "endTimestamp": "2013-06-05T23:18:55.092Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374326934,
+ "lngE7": -1221275253
+ }, {
+ "latE7": 374335784,
+ "lngE7": -1221330718
+ }, {
+ "latE7": 374284286,
+ "lngE7": -1221400451
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1654.624626866984,
+ "travelMode": "DRIVE",
+ "confidence": 0.7392440263207879
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374337616,
+ "lngE7": -1221329727,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-05T23:10:45.140Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84776
+ },
+ "duration": {
+ "startTimestamp": "2013-06-05T23:18:55.092Z",
+ "endTimestamp": "2013-06-06T13:35:27.002Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280330,
+ "centerLngE7": -1221401947,
+ "visitConfidence": 92,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.07278367
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.010891564
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0069823107
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0034078108
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.003010752
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.00220232
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020955089
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016274471
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0015890758
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T13:35:27.002Z",
+ "endTimestamp": "2013-06-06T13:44:17.129Z"
+ },
+ "distance": 2249,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374280166,
+ "lngE7": -1221404495
+ }, {
+ "latE7": 374120216,
+ "lngE7": -1221247329
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2725.6871937361807,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T13:44:17.129Z",
+ "endTimestamp": "2013-06-06T13:58:17.024Z"
+ },
+ "distance": 1013,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T13:58:17.024Z",
+ "endTimestamp": "2013-06-06T13:59:56.852Z"
+ },
+ "distance": 120,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T14:03:58.382Z",
+ "endTimestamp": "2013-06-06T14:10:00.355Z"
+ },
+ "distance": 373,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374041328,
+ "lngE7": -1221162567
+ }, {
+ "latE7": 374023056,
+ "lngE7": -1221136016
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 460.29489469165117,
+ "travelMode": "WALK",
+ "confidence": 0.9495553927902604
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374029196,
+ "longitudeE7": -1221137372,
+ "placeId": "ChIJZ9aWP5ywj4ARSQFRC5YOcrc",
+ "address": "630 San Antonio Road, Mountain View, California 94040, United States",
+ "name": "Sprouts Farmers Market",
+ "locationConfidence": 32.65392,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T14:10:00.355Z",
+ "endTimestamp": "2013-06-06T14:29:16.960Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374022573,
+ "centerLngE7": -1221134800,
+ "visitConfidence": 74,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374019094,
+ "longitudeE7": -1221144992,
+ "placeId": "ChIJAwHOZJywj4AR-4DRT7M_KuA",
+ "locationConfidence": 13.920831,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374017565,
+ "longitudeE7": -1221118174,
+ "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc",
+ "address": "645 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Safeway",
+ "locationConfidence": 5.384829
+ }, {
+ "latitudeE7": 374016175,
+ "longitudeE7": -1221129674,
+ "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA",
+ "address": "685 San Antonio Rd Suite 19, Mountain View, CA 94040, USA",
+ "name": "Jared",
+ "locationConfidence": 3.6410146
+ }, {
+ "latitudeE7": 374009029,
+ "longitudeE7": -1221148768,
+ "placeId": "ChIJMwGvgZuwj4ARXPraJMJy13Q",
+ "address": "4546 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "Village Court Shopping Center",
+ "locationConfidence": 3.0678763
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 2.8043318
+ }, {
+ "latitudeE7": 374024898,
+ "longitudeE7": -1221146209,
+ "placeId": "ChIJD_yTZJywj4ARTLwn1f0aM08",
+ "address": "2630 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "CVS",
+ "locationConfidence": 2.638195
+ }, {
+ "latitudeE7": 374027223,
+ "longitudeE7": -1221140838,
+ "placeId": "ChIJs4k7Dpywj4ARyJHrWS_6BUo",
+ "address": "636 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Cold Stone Creamery",
+ "locationConfidence": 2.0707963
+ }, {
+ "latitudeE7": 374014648,
+ "longitudeE7": -1221130160,
+ "placeId": "ChIJ7R0oCJywj4ARzvtHBegJQ3Y",
+ "address": "685 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Nekter Juice Bar",
+ "locationConfidence": 2.0598247
+ }, {
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 1.9919865
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 33,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T14:29:16.960Z",
+ "endTimestamp": "2013-06-06T14:43:16.909Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374023437,
+ "lngE7": -1221130218
+ }, {
+ "latE7": 374293136,
+ "lngE7": -1221060638
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4491.332111709749,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374309694,
+ "longitudeE7": -1221144096,
+ "placeId": "ChIJd8wVcES6j4ARtGdzL65UVSU",
+ "address": "3450 Louis Road, Palo Alto, California 94303-4403, United States",
+ "name": "Palo Verde Elementary School",
+ "locationConfidence": 90.770256
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T14:44:29.310Z",
+ "endTimestamp": "2013-06-06T14:56:52.777Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374308862,
+ "centerLngE7": -1221141338,
+ "visitConfidence": 74,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374310286,
+ "longitudeE7": -1221138338,
+ "placeId": "ChIJyf66bkS6j4ARhl4pDodcfJ8",
+ "locationConfidence": 5.593666
+ }, {
+ "latitudeE7": 374310924,
+ "longitudeE7": -1221139760,
+ "placeId": "ChIJxTUUcES6j4ARrxuGTChKC6k",
+ "address": "3450 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Palo Alto Community Child Care",
+ "locationConfidence": 1.3992596
+ }, {
+ "latitudeE7": 374282592,
+ "longitudeE7": -1221163841,
+ "placeId": "ChIJ2eqIXUO6j4AR7nbAZeXR9Fk",
+ "address": "3412 Ross Rd, Palo Alto, CA 94303, USA",
+ "name": "Palo Alto Family YMCA",
+ "locationConfidence": 0.61107266
+ }, {
+ "latitudeE7": 374325367,
+ "longitudeE7": -1221123907,
+ "placeId": "ChIJ_UuZKES6j4ARF6JLGsujVdo",
+ "address": "3427 Janice Way, Palo Alto, CA 94303, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.40189087
+ }, {
+ "latitudeE7": 374301870,
+ "longitudeE7": -1221113399,
+ "placeId": "ChIJKVrtREG6j4ARMhCnNDSKNWk",
+ "address": "3539 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Eichler Swim \u0026 Tennis Club",
+ "locationConfidence": 0.24975936
+ }, {
+ "latitudeE7": 374319998,
+ "longitudeE7": -1221135443,
+ "placeId": "ChIJJ-98R0S6j4ARWJkGcHgpkCk",
+ "name": "SWATI Couture Indian Fashions",
+ "locationConfidence": 0.20996676
+ }, {
+ "latitudeE7": 374304068,
+ "longitudeE7": -1221120429,
+ "placeId": "ChIJj-xIVkG6j4AR49-S6o77BtU",
+ "locationConfidence": 0.15743303
+ }, {
+ "latitudeE7": 374286466,
+ "longitudeE7": -1221151515,
+ "placeId": "ChIJG_OpC0O6j4ARaQ4LQecDDBA",
+ "address": "3475 Ross Rd, Palo Alto, CA 94303, USA",
+ "name": "Russian Orthodox Church",
+ "locationConfidence": 0.13972427
+ }, {
+ "latitudeE7": 374351753,
+ "longitudeE7": -1221202996,
+ "placeId": "ChIJVf9wFUW6j4ARZFD0ISC3DnA",
+ "address": "3070 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Chabad of Greater South Bay / Palo Alto and Silicon Valley",
+ "locationConfidence": 0.08707407
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 81,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T14:56:52.777Z",
+ "endTimestamp": "2013-06-06T15:05:53.802Z"
+ },
+ "distance": 1603,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374300422,
+ "lngE7": -1221147079
+ }, {
+ "latE7": 374277229,
+ "lngE7": -1221409530
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3757.265832359336,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T15:05:53.802Z",
+ "endTimestamp": "2013-06-06T15:10:04.361Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277687,
+ "lngE7": -1221409301
+ }, {
+ "latE7": 374282989,
+ "lngE7": -1221401977
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 530.5947771519002,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.838455
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T15:10:04.361Z",
+ "endTimestamp": "2013-06-06T23:42:28.643Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280077,
+ "centerLngE7": -1221401996,
+ "visitConfidence": 85,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.079623275
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.011553122
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0068353163
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0034648047
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.003022671
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0023142472
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020953093
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.00168858
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0016709785
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.838455
+ },
+ "endLocation": {
+ "latitudeE7": 374232150,
+ "longitudeE7": -1220966046,
+ "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU",
+ "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States",
+ "name": "REI",
+ "locationConfidence": 26.724764
+ },
+ "duration": {
+ "startTimestamp": "2013-06-06T23:42:28.643Z",
+ "endTimestamp": "2013-06-07T00:08:34.339Z"
+ },
+ "distance": 5568,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374293670,
+ "lngE7": -1221222839
+ }, {
+ "latE7": 374320030,
+ "lngE7": -1221146697
+ }, {
+ "latE7": 374228477,
+ "lngE7": -1220968246
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7172.418628106614,
+ "travelMode": "DRIVE",
+ "confidence": 0.9804352242486153
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374293098,
+ "lngE7": -1221222305,
+ "accuracyMeters": 37,
+ "timestamp": "2013-06-06T23:49:09.822Z"
+ }, {
+ "latE7": 374319611,
+ "lngE7": -1221147156,
+ "accuracyMeters": 37,
+ "timestamp": "2013-06-06T23:51:10.952Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374232150,
+ "longitudeE7": -1220966046,
+ "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU",
+ "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States",
+ "name": "REI",
+ "locationConfidence": 26.724764
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T00:08:56.576Z",
+ "endTimestamp": "2013-06-07T00:34:30.996Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374229955,
+ "centerLngE7": -1220969264,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374233361,
+ "longitudeE7": -1220971062,
+ "placeId": "ChIJv4heWBC6j4ARTPv9mowDE2E",
+ "address": "2460 E Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Best Buy",
+ "locationConfidence": 25.91667
+ }, {
+ "latitudeE7": 374225390,
+ "longitudeE7": -1220966097,
+ "placeId": "ChIJx-2PmT27j4ARKgyHWFRZbu0",
+ "address": "E, 2398 Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Charleston Plaza",
+ "locationConfidence": 15.412556,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374230579,
+ "longitudeE7": -1220965786,
+ "placeId": "ChIJu8d3XRC6j4ARMj04Hdwr0Y8",
+ "address": "2450 Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Mahi Kitchen",
+ "locationConfidence": 13.279034
+ }, {
+ "latitudeE7": 374218137,
+ "longitudeE7": -1220965771,
+ "placeId": "ChIJY1FiPRC6j4ARzhKBypjO7eg",
+ "address": "2400 Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Chipotle Mexican Grill",
+ "locationConfidence": 1.7714068
+ }, {
+ "latitudeE7": 374242095,
+ "longitudeE7": -1220950175,
+ "placeId": "ChIJ57ctfxq6j4ARcwyO_nDlw1k",
+ "address": "2350 Bayshore Pkwy, Mountain View, CA 94043, USA",
+ "name": "Google Building GWC6",
+ "locationConfidence": 1.2849343
+ }, {
+ "latitudeE7": 374229505,
+ "longitudeE7": -1220960329,
+ "placeId": "ChIJdRTEbhC6j4AR00vUlJmhb30",
+ "address": "2440 E Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Banfield Pet Hospital",
+ "locationConfidence": 1.2091798
+ }, {
+ "latitudeE7": 374220220,
+ "longitudeE7": -1220963789,
+ "placeId": "ChIJS9wPPhC6j4AR-SeTDDlmO84",
+ "address": "2424 Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Erik\u0027s DeliCafé | Mountain View",
+ "locationConfidence": 1.0426898
+ }, {
+ "latitudeE7": 374218370,
+ "longitudeE7": -1220964000,
+ "placeId": "ChIJT_9zPBC6j4ARm2Fu2gYDC0k",
+ "address": "2410 Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Starbucks",
+ "locationConfidence": 1.0086341
+ }, {
+ "latitudeE7": 374234035,
+ "longitudeE7": -1220970530,
+ "placeId": "ChIJv4heWBC6j4ARjmD8QbReQzk",
+ "address": "2460 E Charleston Rd, Mountain View, CA 94043, USA",
+ "name": "Geek Squad",
+ "locationConfidence": 0.95476574
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 28,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374232150,
+ "longitudeE7": -1220966046,
+ "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU",
+ "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States",
+ "name": "REI",
+ "locationConfidence": 26.724764
+ },
+ "endLocation": {
+ "latitudeE7": 374060470,
+ "longitudeE7": -1221093752
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T00:34:30.996Z",
+ "endTimestamp": "2013-06-07T00:44:32.436Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374230041,
+ "lngE7": -1220971069
+ }, {
+ "latE7": 374218978,
+ "lngE7": -1221014251
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 524.4908188963007,
+ "travelMode": "WALK",
+ "confidence": 0.9034139085919067
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374060470,
+ "longitudeE7": -1221093752
+ },
+ "endLocation": {
+ "latitudeE7": 373992670,
+ "longitudeE7": -1221100616
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T00:44:32.436Z",
+ "endTimestamp": "2013-06-07T00:53:28.300Z"
+ },
+ "distance": 1971,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374063491,
+ "lngE7": -1221093597
+ }, {
+ "latE7": 373992652,
+ "lngE7": -1221100311
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1498.6618674162326,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T01:05:04.585Z",
+ "endTimestamp": "2013-06-07T01:18:10.149Z"
+ },
+ "distance": 5506,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 373992652,
+ "lngE7": -1221100311
+ }, {
+ "latE7": 374280166,
+ "lngE7": -1221404495
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5000.514743191165,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.81975
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T01:18:10.149Z",
+ "endTimestamp": "2013-06-07T14:39:27.180Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276408,
+ "centerLngE7": -1221403220,
+ "visitConfidence": 93,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.10225898
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.016680503
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.003049893
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0025399595
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0021237624
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.00201094
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0019798689
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0018646747
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.001526233,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T14:43:30.459Z",
+ "endTimestamp": "2013-06-07T14:44:31.516Z"
+ },
+ "distance": 86,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374284629,
+ "lngE7": -1221404495
+ }, {
+ "latE7": 374277191,
+ "lngE7": -1221401977
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 180.2553656687399,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T14:50:45.017Z",
+ "endTimestamp": "2013-06-07T15:09:53.578Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374316520,
+ "lngE7": -1221141128
+ }, {
+ "latE7": 374284286,
+ "lngE7": -1221400451
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1041.2329544526367,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374310226,
+ "lngE7": -1221139450,
+ "accuracyMeters": 37,
+ "timestamp": "2013-06-07T14:57:52.138Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.832115
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T15:09:53.578Z",
+ "endTimestamp": "2013-06-07T20:39:19.869Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374279893,
+ "centerLngE7": -1221401838,
+ "visitConfidence": 80,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.083670355
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0120604215
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0067309737
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0034503255
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0029958205
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.002383545
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.002057533
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0017347741
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0017318304
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T20:39:19.869Z",
+ "endTimestamp": "2013-06-07T20:40:00.409Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374279708,
+ "lngE7": -1221403732
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 32.42342955807958,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T20:40:00.409Z",
+ "endTimestamp": "2013-06-07T20:54:20.732Z"
+ },
+ "distance": 2378,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374279708,
+ "lngE7": -1221403732
+ }, {
+ "latE7": 374313163,
+ "lngE7": -1221135787
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3665.87606728085,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374309694,
+ "longitudeE7": -1221144096,
+ "placeId": "ChIJd8wVcES6j4ARtGdzL65UVSU",
+ "address": "3450 Louis Road, Palo Alto, California 94303-4403, United States",
+ "name": "Palo Verde Elementary School",
+ "locationConfidence": 69.784424
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T20:54:20.732Z",
+ "endTimestamp": "2013-06-07T21:06:06.773Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374309900,
+ "centerLngE7": -1221139417,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374310286,
+ "longitudeE7": -1221138338,
+ "placeId": "ChIJyf66bkS6j4ARhl4pDodcfJ8",
+ "locationConfidence": 20.05614,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374310924,
+ "longitudeE7": -1221139760,
+ "placeId": "ChIJxTUUcES6j4ARrxuGTChKC6k",
+ "address": "3450 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Palo Alto Community Child Care",
+ "locationConfidence": 5.10824,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374319998,
+ "longitudeE7": -1221135443,
+ "placeId": "ChIJJ-98R0S6j4ARWJkGcHgpkCk",
+ "name": "SWATI Couture Indian Fashions",
+ "locationConfidence": 1.1926913
+ }, {
+ "latitudeE7": 374282592,
+ "longitudeE7": -1221163841,
+ "placeId": "ChIJ2eqIXUO6j4AR7nbAZeXR9Fk",
+ "address": "3412 Ross Rd, Palo Alto, CA 94303, USA",
+ "name": "Palo Alto Family YMCA",
+ "locationConfidence": 0.98448473
+ }, {
+ "latitudeE7": 374325367,
+ "longitudeE7": -1221123907,
+ "placeId": "ChIJ_UuZKES6j4ARF6JLGsujVdo",
+ "address": "3427 Janice Way, Palo Alto, CA 94303, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.92116106
+ }, {
+ "latitudeE7": 374301870,
+ "longitudeE7": -1221113399,
+ "placeId": "ChIJKVrtREG6j4ARMhCnNDSKNWk",
+ "address": "3539 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Eichler Swim \u0026 Tennis Club",
+ "locationConfidence": 0.4717832
+ }, {
+ "latitudeE7": 374319143,
+ "longitudeE7": -1221148913,
+ "placeId": "ChIJ0QdkV0S6j4ARijvCd4c3ivQ",
+ "name": "We Invite In Style.",
+ "locationConfidence": 0.37626323
+ }, {
+ "latitudeE7": 374304068,
+ "longitudeE7": -1221120429,
+ "placeId": "ChIJj-xIVkG6j4AR49-S6o77BtU",
+ "locationConfidence": 0.2781391
+ }, {
+ "latitudeE7": 374351753,
+ "longitudeE7": -1221202996,
+ "placeId": "ChIJVf9wFUW6j4ARZFD0ISC3DnA",
+ "address": "3070 Louis Rd, Palo Alto, CA 94303, USA",
+ "name": "Chabad of Greater South Bay / Palo Alto and Silicon Valley",
+ "locationConfidence": 0.15761693
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 64,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-07T21:06:06.773Z",
+ "endTimestamp": "2013-06-07T23:52:31.411Z"
+ },
+ "distance": 142892,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374313125,
+ "lngE7": -1221135787
+ }, {
+ "latE7": 384569969,
+ "lngE7": -1218425674
+ }, {
+ "latE7": 384974594,
+ "lngE7": -1217943420
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 164432.99149577116,
+ "travelMode": "DRIVE",
+ "confidence": 0.9940182517243868
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 384568520,
+ "lngE7": -1218424225,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-07T23:33:10.884Z"
+ }, {
+ "latE7": 384574928,
+ "lngE7": -1218409271,
+ "accuracyMeters": 3,
+ "timestamp": "2013-06-07T23:36:18.775Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 385356593,
+ "longitudeE7": -1217424489
+ },
+ "endLocation": {
+ "latitudeE7": 385482334,
+ "longitudeE7": -1217189454
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T00:05:05.787Z",
+ "endTimestamp": "2013-06-08T00:10:50.611Z"
+ },
+ "distance": 5525,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 385351371,
+ "lngE7": -1217417373
+ }, {
+ "latE7": 385482101,
+ "lngE7": -1217189407
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7407.018476850855,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 385551174,
+ "longitudeE7": -1216843343
+ },
+ "endLocation": {
+ "latitudeE7": 395879958,
+ "longitudeE7": -1197171073,
+ "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY",
+ "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 97.27026
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T00:20:25.869Z",
+ "endTimestamp": "2013-06-08T02:59:05.127Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 385551376,
+ "lngE7": -1216843414
+ }, {
+ "latE7": 386332511,
+ "lngE7": -1214905700
+ }, {
+ "latE7": 387977714,
+ "lngE7": -1212145690
+ }, {
+ "latE7": 393287429,
+ "lngE7": -1201700592
+ }, {
+ "latE7": 395563201,
+ "lngE7": -1197855453
+ }, {
+ "latE7": 395878105,
+ "lngE7": -1197169113
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 241861.73762666612,
+ "travelMode": "DRIVE",
+ "confidence": 0.9333350378881619
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 386334953,
+ "lngE7": -1214901505,
+ "accuracyMeters": 26,
+ "timestamp": "2013-06-08T00:45:45.272Z"
+ }, {
+ "latE7": 387976990,
+ "lngE7": -1212144623,
+ "accuracyMeters": 89,
+ "timestamp": "2013-06-08T01:08:48.901Z"
+ }, {
+ "latE7": 393299866,
+ "lngE7": -1201707001,
+ "accuracyMeters": 100,
+ "timestamp": "2013-06-08T02:16:08.459Z"
+ }, {
+ "latE7": 395563087,
+ "lngE7": -1197855453,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-08T02:48:27.771Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 395879958,
+ "longitudeE7": -1197171073,
+ "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY",
+ "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 97.27026
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T02:59:05.127Z",
+ "endTimestamp": "2013-06-08T03:39:35.052Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 395880109,
+ "centerLngE7": -1197171152,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 395847543,
+ "longitudeE7": -1197142148,
+ "placeId": "ChIJF3gEfHQ5mYARB-VOqANZOOU",
+ "address": "1535 Los Altos Pkwy, Sparks, NV 89436, USA",
+ "name": "Eagle Fitness",
+ "locationConfidence": 0.6847515
+ }, {
+ "latitudeE7": 395868079,
+ "longitudeE7": -1197164556,
+ "placeId": "ChIJ2_txgHM5mYARAcMEc_Apzaw",
+ "address": "5255 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Lighthouse Coffee",
+ "locationConfidence": 0.5519052
+ }, {
+ "latitudeE7": 395876993,
+ "longitudeE7": -1197161111,
+ "placeId": "ChIJpSDjb3Q5mYARYXwfYdWa1FM",
+ "address": "5275 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Spanish Springs Veterinary",
+ "locationConfidence": 0.25160956
+ }, {
+ "latitudeE7": 395875057,
+ "longitudeE7": -1197151857,
+ "placeId": "ChIJv4l6c3Q5mYAROMnUPvi1aJQ",
+ "address": "5245 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "The UPS Store",
+ "locationConfidence": 0.16230378
+ }, {
+ "latitudeE7": 395867640,
+ "longitudeE7": -1197153590,
+ "placeId": "ChIJvWKNi3M5mYARqTkeP0YRMpE",
+ "address": "5225 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Pizza Plus - Vista",
+ "locationConfidence": 0.1556598
+ }, {
+ "latitudeE7": 395875891,
+ "longitudeE7": -1197152579,
+ "placeId": "ChIJxassC3Q5mYARJvniUl_1i9c",
+ "address": "5245 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Sierra Mart \u0026 Liquor",
+ "locationConfidence": 0.1186172
+ }, {
+ "latitudeE7": 395869280,
+ "longitudeE7": -1197164280,
+ "placeId": "ChIJ-8r1gHM5mYARiaNEFdKhtU8",
+ "address": "5255 Vista Blvd c1, Sparks, NV 89436, USA",
+ "name": "Essenza Salon \u0026 Spa",
+ "locationConfidence": 0.11081519
+ }, {
+ "latitudeE7": 395875891,
+ "longitudeE7": -1197152580,
+ "placeId": "ChIJxassC3Q5mYARfSMUxplSuYs",
+ "address": "5245 Vista Blvd # F3, Sparks, NV 89436, USA",
+ "name": "L Bar Nevada",
+ "locationConfidence": 0.10397103
+ }, {
+ "latitudeE7": 395877334,
+ "longitudeE7": -1197159178,
+ "placeId": "ChIJpSDjb3Q5mYARuEbohfY41Uw",
+ "address": "5275 Vista Blvd a3, Sparks, NV 89436, USA",
+ "name": "Shin Gan Dojo",
+ "locationConfidence": 0.08276174
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 86,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T03:39:35.052Z",
+ "endTimestamp": "2013-06-08T03:45:59.461Z"
+ },
+ "distance": 4433,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395879974,
+ "lngE7": -1197168197
+ }, {
+ "latE7": 395322990,
+ "lngE7": -1197219848
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7981.054554750653,
+ "travelMode": "DRIVE",
+ "confidence": 0.9601733083975197
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T03:45:59.461Z",
+ "endTimestamp": "2013-06-08T03:51:48.182Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395875205,
+ "lngE7": -1197213287
+ }, {
+ "latE7": 395305900,
+ "lngE7": -1197231903
+ }, {
+ "latE7": 395314369,
+ "lngE7": -1197228240
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7218.482985998467,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 395305824,
+ "lngE7": -1197227173,
+ "accuracyMeters": 87,
+ "timestamp": "2013-06-08T03:54:59.456Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 395317015,
+ "longitudeE7": -1197229487,
+ "placeId": "ChIJ2xyZTpU-mYARrCdlCRBW4ZQ",
+ "address": "1170 Scheels Dr, Sparks, Nevada 89434, United States",
+ "name": "Galaxy Sparks IMAX Luxury+ Theatre",
+ "locationConfidence": 38.953533,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T03:51:48.182Z",
+ "endTimestamp": "2013-06-08T04:51:01.212Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 395313262,
+ "centerLngE7": -1197226132,
+ "visitConfidence": 70,
+ "otherCandidateLocations": [{
+ "latitudeE7": 395310200,
+ "longitudeE7": -1197226960,
+ "placeId": "ChIJIxqpMOs-mYARyMY93FobQyA",
+ "address": "1180 Scheels Drive Ste. B-117, Sparks, NV 89434, USA",
+ "name": "Grimaldi\u0027s Pizzeria",
+ "locationConfidence": 16.982594
+ }, {
+ "latitudeE7": 395337042,
+ "longitudeE7": -1197188194,
+ "placeId": "ChIJyWg1Eus-mYARF-cr0tUY-38",
+ "address": "1310 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "The Outlets at Legends",
+ "locationConfidence": 14.847855,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395306955,
+ "longitudeE7": -1197217094,
+ "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU",
+ "address": "1200 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "SCHEELS",
+ "locationConfidence": 14.351801
+ }, {
+ "latitudeE7": 395320776,
+ "longitudeE7": -1197213874,
+ "placeId": "ChIJkdHS7eo-mYARJE4nEYnh8AU",
+ "address": "1330 Scheels Drive SUITE 250, Sparks, NV 89434, USA",
+ "name": "O’Cleary’s",
+ "locationConfidence": 2.7055912
+ }, {
+ "latitudeE7": 395322917,
+ "longitudeE7": -1197213405,
+ "placeId": "ChIJB_3pL-s-mYAReH8ZvRZEudE",
+ "address": "1310 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "CBQ",
+ "locationConfidence": 1.123805
+ }, {
+ "latitudeE7": 395348059,
+ "longitudeE7": -1197305995,
+ "placeId": "ChIJLVp878I-mYARYLEaJBzjspU",
+ "address": "300 Howard Dr, Sparks, Nevada 89434, United States",
+ "name": "Sparks Marina Park",
+ "locationConfidence": 0.8183264
+ }, {
+ "latitudeE7": 395329836,
+ "longitudeE7": -1197215222,
+ "placeId": "ChIJIzC-muo-mYARYqzdx4WRmp8",
+ "locationConfidence": 0.79691434,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395307013,
+ "longitudeE7": -1197216188,
+ "placeId": "ChIJ2xyZTpU-mYAROCEatXmwvjI",
+ "address": "1180 Scheels Drive #B-101, Sparks, NV 89434, USA",
+ "name": "Direct Tools Factory Outlet",
+ "locationConfidence": 0.7846599
+ }, {
+ "latitudeE7": 395310678,
+ "longitudeE7": -1197158879,
+ "placeId": "ChIJL2McZZQ-mYARCkWZv0b-qCQ",
+ "address": "1395 Big Fish Drive, Sparks, NV 89431, USA",
+ "name": "Taco Bell",
+ "locationConfidence": 0.7603435,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 38,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T04:51:01.212Z",
+ "endTimestamp": "2013-06-08T04:55:05.613Z"
+ },
+ "distance": 3740,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395316734,
+ "lngE7": -1197215042
+ }, {
+ "latE7": 395347557,
+ "lngE7": -1197536315
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3771.4010911936803,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T04:55:05.613Z",
+ "endTimestamp": "2013-06-08T05:04:43.176Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395347900,
+ "lngE7": -1197536392
+ }, {
+ "latE7": 395507965,
+ "lngE7": -1197174453
+ }, {
+ "latE7": 395878639,
+ "lngE7": -1197168807
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 8124.138978646534,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 395505028,
+ "lngE7": -1197172470,
+ "accuracyMeters": 40,
+ "timestamp": "2013-06-08T04:59:17.069Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 395879958,
+ "longitudeE7": -1197171073,
+ "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY",
+ "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 96.78939
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T05:04:43.176Z",
+ "endTimestamp": "2013-06-08T16:16:11.900Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 395879353,
+ "centerLngE7": -1197171295,
+ "visitConfidence": 92,
+ "otherCandidateLocations": [{
+ "latitudeE7": 395868079,
+ "longitudeE7": -1197164556,
+ "placeId": "ChIJ2_txgHM5mYARAcMEc_Apzaw",
+ "address": "5255 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Lighthouse Coffee",
+ "locationConfidence": 1.6068512
+ }, {
+ "latitudeE7": 395847543,
+ "longitudeE7": -1197142148,
+ "placeId": "ChIJF3gEfHQ5mYARB-VOqANZOOU",
+ "address": "1535 Los Altos Pkwy, Sparks, NV 89436, USA",
+ "name": "Eagle Fitness",
+ "locationConfidence": 0.38881594
+ }, {
+ "latitudeE7": 395876993,
+ "longitudeE7": -1197161111,
+ "placeId": "ChIJpSDjb3Q5mYARYXwfYdWa1FM",
+ "address": "5275 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Spanish Springs Veterinary",
+ "locationConfidence": 0.21947326
+ }, {
+ "latitudeE7": 395867640,
+ "longitudeE7": -1197153590,
+ "placeId": "ChIJvWKNi3M5mYARqTkeP0YRMpE",
+ "address": "5225 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Pizza Plus - Vista",
+ "locationConfidence": 0.1475946
+ }, {
+ "latitudeE7": 395875057,
+ "longitudeE7": -1197151857,
+ "placeId": "ChIJv4l6c3Q5mYAROMnUPvi1aJQ",
+ "address": "5245 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "The UPS Store",
+ "locationConfidence": 0.14071774
+ }, {
+ "latitudeE7": 395877334,
+ "longitudeE7": -1197159178,
+ "placeId": "ChIJpSDjb3Q5mYARuEbohfY41Uw",
+ "address": "5275 Vista Blvd a3, Sparks, NV 89436, USA",
+ "name": "Shin Gan Dojo",
+ "locationConfidence": 0.12288698
+ }, {
+ "latitudeE7": 395875891,
+ "longitudeE7": -1197152580,
+ "placeId": "ChIJxassC3Q5mYARfSMUxplSuYs",
+ "address": "5245 Vista Blvd # F3, Sparks, NV 89436, USA",
+ "name": "L Bar Nevada",
+ "locationConfidence": 0.093747355
+ }, {
+ "latitudeE7": 395865993,
+ "longitudeE7": -1197156615,
+ "placeId": "ChIJ0U6-j3M5mYARjVYGxA-B4os",
+ "address": "5215 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "Oak Tavern Bar and Grill",
+ "locationConfidence": 0.07263847
+ }, {
+ "latitudeE7": 395870116,
+ "longitudeE7": -1197151647,
+ "placeId": "ChIJS2M4inM5mYARMcVY5QiV1V0",
+ "address": "5235 Vista Blvd, Sparks, NV 89436, USA",
+ "name": "El Dorado Savings Bank",
+ "locationConfidence": 0.057273854
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 85,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 395879958,
+ "longitudeE7": -1197171073,
+ "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY",
+ "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 96.78939
+ },
+ "endLocation": {
+ "latitudeE7": 395306955,
+ "longitudeE7": -1197217094,
+ "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU",
+ "address": "1200 Scheels Drive, Sparks, Nevada 89434, United States",
+ "name": "SCHEELS",
+ "locationConfidence": 66.13029,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T16:16:32.318Z",
+ "endTimestamp": "2013-06-08T16:33:48.651Z"
+ },
+ "distance": 6930,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395879096,
+ "lngE7": -1197168655
+ }, {
+ "latE7": 395301017,
+ "lngE7": -1197213516
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7913.330989375811,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 395306955,
+ "longitudeE7": -1197217094,
+ "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU",
+ "address": "1200 Scheels Drive, Sparks, Nevada 89434, United States",
+ "name": "SCHEELS",
+ "locationConfidence": 66.13029,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T16:33:48.651Z",
+ "endTimestamp": "2013-06-08T16:58:39.334Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 395307174,
+ "centerLngE7": -1197217200,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 395337042,
+ "longitudeE7": -1197188194,
+ "placeId": "ChIJyWg1Eus-mYARF-cr0tUY-38",
+ "address": "1310 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "The Outlets at Legends",
+ "locationConfidence": 8.420857,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395317015,
+ "longitudeE7": -1197229487,
+ "placeId": "ChIJ2xyZTpU-mYARrCdlCRBW4ZQ",
+ "address": "1170 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "Galaxy Sparks IMAX Luxury+ Theatre",
+ "locationConfidence": 7.6792326,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395306596,
+ "longitudeE7": -1197213572,
+ "placeId": "ChIJHefXBOs-mYARJJGEAlR3Ywk",
+ "name": "Armed \u0026 Safe Firearms Training",
+ "locationConfidence": 2.5531788,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395307013,
+ "longitudeE7": -1197216188,
+ "placeId": "ChIJ2xyZTpU-mYAROCEatXmwvjI",
+ "address": "1180 Scheels Drive #B-101, Sparks, NV 89434, USA",
+ "name": "Direct Tools Factory Outlet",
+ "locationConfidence": 1.8002099,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395306812,
+ "longitudeE7": -1197218714,
+ "placeId": "ChIJV9WwBOs-mYARc9ysFv19yew",
+ "address": "1200 Scheels Drive, Sparks, NV 89434, USA",
+ "name": "Ginnas Cafe",
+ "locationConfidence": 1.4618119,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395314062,
+ "longitudeE7": -1197213665,
+ "placeId": "ChIJyWg1Eus-mYAR9wG_UNNQK6w",
+ "address": "1310 Scheels Drive C-160, Sparks, NV 89434, USA",
+ "name": "Fresh Berry Frozen Yogurt Cafe",
+ "locationConfidence": 1.2355646,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 395310200,
+ "longitudeE7": -1197226960,
+ "placeId": "ChIJIxqpMOs-mYARyMY93FobQyA",
+ "address": "1180 Scheels Drive Ste. B-117, Sparks, NV 89434, USA",
+ "name": "Grimaldi\u0027s Pizzeria",
+ "locationConfidence": 1.0128492
+ }, {
+ "latitudeE7": 395306710,
+ "longitudeE7": -1197216500,
+ "placeId": "ChIJHefXBOs-mYARo_ulAAHttUA",
+ "name": "U.S. Bank ATM",
+ "locationConfidence": 0.75504446
+ }, {
+ "latitudeE7": 395302776,
+ "longitudeE7": -1197218044,
+ "placeId": "ChIJsWZ3Ces-mYARyXoXKyLBXTU",
+ "locationConfidence": 0.74972147,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 61,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T17:07:41.407Z",
+ "endTimestamp": "2013-06-08T18:21:46.851Z"
+ },
+ "distance": 128393,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 395301589,
+ "lngE7": -1197211532
+ }, {
+ "latE7": 401747894,
+ "lngE7": -1184784622
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 140327.3131659119,
+ "travelMode": "DRIVE",
+ "confidence": 0.8272779193420629
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T18:21:46.851Z",
+ "endTimestamp": "2013-06-08T18:33:55.231Z"
+ },
+ "distance": 601,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T18:38:43.485Z",
+ "endTimestamp": "2013-06-08T19:38:13.640Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 401799507,
+ "lngE7": -1184761047
+ }, {
+ "latE7": 409730796,
+ "lngE7": -1177341766
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 118196.20776645688,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 409735400,
+ "longitudeE7": -1177353090,
+ "placeId": "ChIJk7Gdm0rjoIAROwIAUXAcBaQ",
+ "address": "50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States",
+ "name": "Winnemucca Convention \u0026 Visitors Center",
+ "locationConfidence": 7.639284
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T19:38:13.640Z",
+ "endTimestamp": "2013-06-08T20:21:35.035Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 409737620,
+ "centerLngE7": -1177343493,
+ "visitConfidence": 69,
+ "otherCandidateLocations": [{
+ "latitudeE7": 409742557,
+ "longitudeE7": -1177344303,
+ "placeId": "ChIJv6JKYErjoIARHEmKWfAeJ4U",
+ "address": "47 E Winnemucca Blvd, Winnemucca, NV 89445, USA",
+ "name": "Las Margaritas Mexican",
+ "locationConfidence": 7.278898
+ }, {
+ "latitudeE7": 409741085,
+ "longitudeE7": -1177345646,
+ "placeId": "ChIJ3-7YiUrjoIARj_4xrFrj6Gc",
+ "address": "45 E Winnemucca Blvd, Winnemucca, NV 89445, USA",
+ "name": "Third Street Bistro",
+ "locationConfidence": 7.1978807
+ }, {
+ "latitudeE7": 409735195,
+ "longitudeE7": -1177345733,
+ "placeId": "ChIJOxuvf0rjoIARd6iRSlIrU38",
+ "address": "311 S Bridge St, Winnemucca, NV 89445, USA",
+ "name": "Financial Horizons Credit Union",
+ "locationConfidence": 4.247692
+ }, {
+ "latitudeE7": 409736259,
+ "longitudeE7": -1177354131,
+ "placeId": "ChIJOcIqm0rjoIARf8TdzTtPt1o",
+ "address": "30 W Winnemucca Blvd, Winnemucca, NV 89445, USA",
+ "name": "Buckaroo Hall of Fame",
+ "locationConfidence": 3.9429455
+ }, {
+ "latitudeE7": 409735751,
+ "longitudeE7": -1177343092,
+ "placeId": "ChIJx5xkhkrjoIAR5n6iMHXjMfk",
+ "address": "311 S Bridge St, Winnemucca, NV 89445, USA",
+ "name": "Brides Forever \u0026 More",
+ "locationConfidence": 3.5399246
+ }, {
+ "latitudeE7": 409736259,
+ "longitudeE7": -1177354131,
+ "placeId": "ChIJOcIqm0rjoIARiejbkeM1uM0",
+ "address": "30 W Winnemucca Blvd, Winnemucca, NV 89445, USA",
+ "name": "Winnemucca Visitors Center",
+ "locationConfidence": 3.5044534
+ }, {
+ "latitudeE7": 409733157,
+ "longitudeE7": -1177343361,
+ "placeId": "ChIJ0WmCgErjoIAR0Qt6GrxtceQ",
+ "address": "341 S Bridge St, Winnemucca, NV 89445, USA",
+ "name": "Northern Nevada Trading Co",
+ "locationConfidence": 2.2846637
+ }, {
+ "latitudeE7": 409738378,
+ "longitudeE7": -1177343174,
+ "placeId": "ChIJpUz2YErjoIARuUO6hq7boL0",
+ "address": "49 E Winnemucca Blvd, Winnemucca, NV 89445, USA",
+ "name": "Shore-Line",
+ "locationConfidence": 2.0143268
+ }, {
+ "latitudeE7": 409738459,
+ "longitudeE7": -1177347859,
+ "placeId": "ChIJx8P0jkrjoIARVtVhmc9Fv3E",
+ "address": "259 S Bridge St, Winnemucca, NV 89445, USA",
+ "name": "Ben\u0027s Discount Liquors",
+ "locationConfidence": 1.8547187
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 13,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T20:21:35.035Z",
+ "endTimestamp": "2013-06-08T20:26:26.277Z"
+ },
+ "distance": 263,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 409732971,
+ "lngE7": -1177344818
+ }, {
+ "latE7": 409728012,
+ "lngE7": -1177357101
+ }, {
+ "latE7": 409729652,
+ "lngE7": -1177340164
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 53.71106656230819,
+ "travelMode": "WALK",
+ "confidence": 0.8399451078348017
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 409723740,
+ "lngE7": -1177355042,
+ "accuracyMeters": 94,
+ "timestamp": "2013-06-08T20:22:55.722Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T20:29:29.026Z",
+ "endTimestamp": "2013-06-08T22:25:09.413Z"
+ },
+ "distance": 179718,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 409728851,
+ "lngE7": -1177339019
+ }, {
+ "latE7": 409517211,
+ "lngE7": -1155932540
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 219983.8909607474,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 409554718,
+ "longitudeE7": -1155616455
+ },
+ "endLocation": {
+ "latitudeE7": 407404935,
+ "longitudeE7": -1140736971
+ },
+ "duration": {
+ "startTimestamp": "2013-06-08T22:38:59.831Z",
+ "endTimestamp": "2013-06-09T00:07:27.752Z"
+ },
+ "distance": 139820,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 409554405,
+ "lngE7": -1155644836
+ }, {
+ "latE7": 407385215,
+ "lngE7": -1140776672
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 151617.5071909837,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 407404935,
+ "longitudeE7": -1140736971
+ },
+ "endLocation": {
+ "latitudeE7": 407393892,
+ "longitudeE7": -1140776678
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T00:07:27.752Z",
+ "endTimestamp": "2013-06-09T00:11:57.463Z"
+ },
+ "distance": 306,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 407385215,
+ "lngE7": -1140776672
+ }, {
+ "latE7": 407393226,
+ "lngE7": -1140772857
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 95.30270078893969,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 407393892,
+ "longitudeE7": -1140776678
+ },
+ "endLocation": {
+ "latitudeE7": 407403815,
+ "longitudeE7": -1140735254
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T00:11:57.463Z",
+ "endTimestamp": "2013-06-09T00:25:37.086Z"
+ },
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 407386426,
+ "lngE7": -1140779161,
+ "accuracyMeters": 40,
+ "timestamp": "2013-06-09T00:16:02.561Z"
+ }, {
+ "latE7": 407393882,
+ "lngE7": -1140776680,
+ "accuracyMeters": 36,
+ "timestamp": "2013-06-09T00:24:00.637Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 537.0781173139821
+ }
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T00:25:37.086Z",
+ "endTimestamp": "2013-06-09T03:45:36.465Z"
+ },
+ "distance": 251929,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 407393226,
+ "lngE7": -1140772857
+ }, {
+ "latE7": 407166252,
+ "lngE7": -1121222305
+ }, {
+ "latE7": 409913673,
+ "lngE7": -1118967285
+ }, {
+ "latE7": 409958801,
+ "lngE7": -1119047317
+ }, {
+ "latE7": 410510520,
+ "lngE7": -1122470092
+ }, {
+ "latE7": 410404510,
+ "lngE7": -1122598190
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 259524.55015516016,
+ "travelMode": "DRIVE",
+ "confidence": 0.9798504924561303
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 407165642,
+ "lngE7": -1121222000,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-09T02:26:08.321Z"
+ }, {
+ "latE7": 409913292,
+ "lngE7": -1118967590,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-09T02:57:22.308Z"
+ }, {
+ "latE7": 409958725,
+ "lngE7": -1119047623,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-09T02:58:33.376Z"
+ }, {
+ "latE7": 410511017,
+ "lngE7": -1122470169,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-09T03:35:36.668Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T11:34:08.905Z",
+ "endTimestamp": "2013-06-09T12:45:07.848Z"
+ },
+ "distance": 766,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 410430512,
+ "longitudeE7": -1122513357
+ },
+ "endLocation": {
+ "latitudeE7": 410878164,
+ "longitudeE7": -1120302064
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T13:31:55.421Z",
+ "endTimestamp": "2013-06-09T14:44:54.189Z"
+ },
+ "distance": 22924,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 410430870,
+ "lngE7": -1122512817
+ }, {
+ "latE7": 410874633,
+ "lngE7": -1120302047
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 21899.62340293005,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T14:51:28.506Z",
+ "endTimestamp": "2013-06-09T15:27:57.843Z"
+ },
+ "distance": 50314,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 410862121,
+ "lngE7": -1119839248
+ }, {
+ "latE7": 407166175,
+ "lngE7": -1119173889
+ }, {
+ "latE7": 407241020,
+ "lngE7": -1119086914
+ }, {
+ "latE7": 407600097,
+ "lngE7": -1119168243
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 40826.70759067163,
+ "travelMode": "DRIVE",
+ "confidence": 0.9735938766869023
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 407166176,
+ "lngE7": -1119172821,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-09T15:21:56.278Z"
+ }, {
+ "latE7": 407241096,
+ "lngE7": -1119087372,
+ "accuracyMeters": 6,
+ "timestamp": "2013-06-09T15:23:04.294Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T15:27:57.843Z",
+ "endTimestamp": "2013-06-09T15:58:32.560Z"
+ },
+ "distance": 4766,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 407600097,
+ "lngE7": -1119167785
+ }, {
+ "latE7": 407599182,
+ "lngE7": -1118934097
+ }, {
+ "latE7": 407688522,
+ "lngE7": -1118853912
+ }, {
+ "latE7": 407679634,
+ "lngE7": -1118893585
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3032.7596398332857,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 407601585,
+ "lngE7": -1118934097,
+ "accuracyMeters": 61,
+ "timestamp": "2013-06-09T15:33:04.115Z"
+ }, {
+ "latE7": 407687607,
+ "lngE7": -1118854370,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-09T15:36:57.116Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T16:13:33.098Z",
+ "endTimestamp": "2013-06-09T16:16:33.140Z"
+ },
+ "distance": 424,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 407679634,
+ "lngE7": -1118893585
+ }, {
+ "latE7": 407661476,
+ "lngE7": -1118939208
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 565.7986956181397,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 407677086,
+ "longitudeE7": -1118870625,
+ "placeId": "ChIJN_AYog71UocRDFFmdlj1dCM",
+ "address": "135 East 100 South, Salt Lake City, Utah 84111, United States",
+ "name": "Harmons Grocery - City Creek",
+ "locationConfidence": 14.3222685
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T16:19:33.174Z",
+ "endTimestamp": "2013-06-09T16:34:48.854Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 407657200,
+ "centerLngE7": -1118872000,
+ "visitConfidence": 33,
+ "otherCandidateLocations": [{
+ "latitudeE7": 407643116,
+ "longitudeE7": -1118885851,
+ "placeId": "ChIJ4fx8Pw71UocRF_BAy0cmwJE",
+ "address": "220 S State St, Salt Lake City, UT 84111, USA",
+ "name": "Salt Lake City Marriott City Center",
+ "locationConfidence": 14.257336
+ }, {
+ "latitudeE7": 407608911,
+ "longitudeE7": -1118831913,
+ "placeId": "ChIJcYT0dQ71UocR72j73nwGqiQ",
+ "address": "275 E 400 S, Salt Lake City, UT 84111, USA",
+ "name": "Oasis Games",
+ "locationConfidence": 4.2937613
+ }, {
+ "latitudeE7": 407653477,
+ "longitudeE7": -1118878019,
+ "placeId": "ChIJs_NyZg71UocReTK3YFPlOkg",
+ "locationConfidence": 3.7289822
+ }, {
+ "latitudeE7": 407678111,
+ "longitudeE7": -1118895249,
+ "placeId": "ChIJNf64Jw_1UocRYrpgnkLjaCk",
+ "address": "65 Regent St, Salt Lake City, UT 84111, USA",
+ "name": "The Cheesecake Factory",
+ "locationConfidence": 3.5088217
+ }, {
+ "latitudeE7": 407653000,
+ "longitudeE7": -1118885850,
+ "placeId": "ChIJk693Ww71UocRXx9GJPzggUw",
+ "address": "75 E 200 S, Salt Lake City, UT 84111, USA",
+ "name": "Carl\u0027s Jr",
+ "locationConfidence": 1.9548368
+ }, {
+ "latitudeE7": 407652655,
+ "longitudeE7": -1118862792,
+ "placeId": "ChIJuaBU2Q31UocR_-hgNOi1ShM",
+ "address": "155 E 200 S, Salt Lake City, UT 84111, USA",
+ "name": "Bar-X",
+ "locationConfidence": 1.5092056
+ }, {
+ "latitudeE7": 407632660,
+ "longitudeE7": -1118872413,
+ "placeId": "ChIJrS_p5hH1UocRy7NXtBP9YBA",
+ "address": "111 E Broadway #170, Salt Lake City, UT 84111, USA",
+ "name": "The Copper Onion",
+ "locationConfidence": 1.3472767
+ }, {
+ "latitudeE7": 407657845,
+ "longitudeE7": -1118885130,
+ "placeId": "ChIJjQ_M9Q71UocRD-L-MEG-cvc",
+ "address": "156 S State St, Salt Lake City, UT 84111, USA",
+ "name": "Jeanie\u0027s Smoke Shop",
+ "locationConfidence": 1.3365445
+ }, {
+ "latitudeE7": 407651820,
+ "longitudeE7": -1118872786,
+ "placeId": "ChIJH7lbeNH1UocR8wRvaDGdty0",
+ "address": "123 E 200 S, Salt Lake City, UT 84111, USA",
+ "name": "Cancun Cafe",
+ "locationConfidence": 1.0167291
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 18,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T17:11:00.855Z",
+ "endTimestamp": "2013-06-09T17:49:20.139Z"
+ },
+ "distance": 31019,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 407663116,
+ "lngE7": -1118936920
+ }, {
+ "latE7": 407683563,
+ "lngE7": -1118909988
+ }, {
+ "latE7": 407650108,
+ "lngE7": -1118811721
+ }, {
+ "latE7": 407554397,
+ "lngE7": -1115768127
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 37698.08793367335,
+ "travelMode": "DRIVE",
+ "confidence": 0.9958089454316937
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 407681313,
+ "lngE7": -1118906784,
+ "accuracyMeters": 50,
+ "timestamp": "2013-06-09T17:15:00.800Z"
+ }, {
+ "latE7": 407646790,
+ "lngE7": -1118812408,
+ "accuracyMeters": 76,
+ "timestamp": "2013-06-09T17:19:04.156Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 409828423,
+ "longitudeE7": -1114165453
+ },
+ "endLocation": {
+ "latitudeE7": 417267005,
+ "longitudeE7": -1077284546
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T18:24:26.892Z",
+ "endTimestamp": "2013-06-09T21:44:07.529Z"
+ },
+ "distance": 353499,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 409831886,
+ "lngE7": -1114168395
+ }, {
+ "latE7": 417267227,
+ "lngE7": -1077283401
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 345515.20857850317,
+ "travelMode": "DRIVE",
+ "confidence": 0.893109413942004
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 417841960,
+ "longitudeE7": -1073685835
+ },
+ "endLocation": {
+ "latitudeE7": 411464653,
+ "longitudeE7": -1047691306
+ },
+ "duration": {
+ "startTimestamp": "2013-06-09T21:50:49.410Z",
+ "endTimestamp": "2013-06-10T00:41:06.215Z"
+ },
+ "distance": 258207,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 417832527,
+ "lngE7": -1073695678
+ }, {
+ "latE7": 411464653,
+ "lngE7": -1047691574
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 257485.28339531625,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T01:00:48.116Z",
+ "endTimestamp": "2013-06-10T01:36:52.005Z"
+ },
+ "distance": 66029,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 411464653,
+ "lngE7": -1047691574
+ }, {
+ "latE7": 412931289,
+ "lngE7": -1055339050
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 80104.54276872029,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412930450,
+ "longitudeE7": -1055342090
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T01:46:50.705Z",
+ "endTimestamp": "2013-06-10T02:07:44.121Z"
+ },
+ "distance": 10752,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412931289,
+ "lngE7": -1055339050
+ }, {
+ "latE7": 412957344,
+ "lngE7": -1055445556
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1049.9036098170882,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T02:07:44.121Z",
+ "endTimestamp": "2013-06-10T02:16:49.622Z"
+ },
+ "distance": 297,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 411109587,
+ "longitudeE7": -1048016469
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T14:58:34.512Z",
+ "endTimestamp": "2013-06-10T15:53:53.555Z"
+ },
+ "distance": 58134,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412957344,
+ "lngE7": -1055445556
+ }, {
+ "latE7": 412552337,
+ "lngE7": -1054208984
+ }, {
+ "latE7": 411891212,
+ "lngE7": -1052117919
+ }, {
+ "latE7": 411111106,
+ "lngE7": -1048016433
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 75497.09869092127,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 412552528,
+ "lngE7": -1054209061,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-10T15:05:42.048Z"
+ }, {
+ "latE7": 411891022,
+ "lngE7": -1052120056,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-10T15:22:02.038Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 411109587,
+ "longitudeE7": -1048016469
+ },
+ "endLocation": {
+ "latitudeE7": 411577586,
+ "longitudeE7": -1048033232
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T15:53:53.555Z",
+ "endTimestamp": "2013-06-10T16:44:07.677Z"
+ },
+ "distance": 12431,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 411111106,
+ "lngE7": -1048016433
+ }, {
+ "latE7": 411464653,
+ "lngE7": -1047691574
+ }, {
+ "latE7": 411583824,
+ "lngE7": -1048032455
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 8052.034305571874,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 411464653,
+ "lngE7": -1047691269,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-10T16:10:19.289Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 411577586,
+ "longitudeE7": -1048033232
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T16:45:52.207Z",
+ "endTimestamp": "2013-06-10T18:09:40.466Z"
+ },
+ "distance": 60400,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 411593208,
+ "lngE7": -1048035812
+ }, {
+ "latE7": 412957344,
+ "lngE7": -1055445556
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 80482.83561434528,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412494729,
+ "longitudeE7": -1054444403
+ },
+ "endLocation": {
+ "latitudeE7": 412521258,
+ "longitudeE7": -1054150660
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T19:17:02.822Z",
+ "endTimestamp": "2013-06-10T19:29:39.236Z"
+ },
+ "distance": 518,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412507820,
+ "lngE7": -1054381027
+ }, {
+ "latE7": 412520446,
+ "lngE7": -1054151840
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4397.863415039816,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412522816,
+ "longitudeE7": -1054152004
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T19:37:37.898Z",
+ "endTimestamp": "2013-06-10T19:44:31.221Z"
+ },
+ "distance": 401,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T19:44:31.221Z",
+ "endTimestamp": "2013-06-10T19:55:32.523Z"
+ },
+ "distance": 642,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 412491162,
+ "longitudeE7": -1054436005
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T19:55:32.523Z",
+ "endTimestamp": "2013-06-10T20:03:17.504Z"
+ },
+ "distance": 1355,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412957344,
+ "lngE7": -1055445556
+ }, {
+ "latE7": 412505683,
+ "lngE7": -1054379501
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 14014.721936274309,
+ "travelMode": "BICYCLE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T21:54:16.965Z",
+ "endTimestamp": "2013-06-10T22:17:00.774Z"
+ },
+ "distance": 1004,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "duration": {
+ "startTimestamp": "2013-06-10T22:22:32.878Z",
+ "endTimestamp": "2013-06-10T22:48:24.976Z"
+ },
+ "distance": 1356,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T09:43:08.527Z",
+ "endTimestamp": "2013-06-11T13:54:13.492Z"
+ },
+ "distance": 8631,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412958236,
+ "longitudeE7": -1055445039
+ },
+ "endLocation": {
+ "latitudeE7": 412998697,
+ "longitudeE7": -1055555486
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T13:54:13.492Z",
+ "endTimestamp": "2013-06-11T14:27:16.710Z"
+ },
+ "distance": 11103,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412957344,
+ "lngE7": -1055445556
+ }, {
+ "latE7": 412981834,
+ "lngE7": -1055532226
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1724.542930520361,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 412998272,
+ "longitudeE7": -1055561032
+ },
+ "endLocation": {
+ "latitudeE7": 405854330,
+ "longitudeE7": -1050769965
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T14:54:23.553Z",
+ "endTimestamp": "2013-06-11T16:46:48.680Z"
+ },
+ "distance": 70587,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 412981834,
+ "lngE7": -1055532226
+ }, {
+ "latE7": 405815048,
+ "lngE7": -1050605316
+ }, {
+ "latE7": 405800895,
+ "lngE7": -1050750732
+ }, {
+ "latE7": 405854339,
+ "lngE7": -1050769348
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 112432.84187572383,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 405815048,
+ "lngE7": -1050605316,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-11T16:37:07.727Z"
+ }, {
+ "latE7": 405800629,
+ "lngE7": -1050750732,
+ "accuracyMeters": 67,
+ "timestamp": "2013-06-11T16:39:13.459Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 405854857,
+ "longitudeE7": -1050751124
+ },
+ "endLocation": {
+ "latitudeE7": 405929358,
+ "longitudeE7": -1050584332
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T16:57:08.697Z",
+ "endTimestamp": "2013-06-11T17:19:04.305Z"
+ },
+ "distance": 2023,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 405856094,
+ "lngE7": -1050751113
+ }, {
+ "latE7": 405929145,
+ "lngE7": -1050577163
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2185.1448334080146,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 405929358,
+ "longitudeE7": -1050584332
+ },
+ "endLocation": {
+ "latitudeE7": 405943783,
+ "longitudeE7": -1050575029
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T17:19:04.305Z",
+ "endTimestamp": "2013-06-11T17:31:43.401Z"
+ },
+ "distance": 770,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 405929145,
+ "lngE7": -1050577774
+ }, {
+ "latE7": 405943794,
+ "lngE7": -1050576248
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 172.51601607164537,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T17:31:43.401Z",
+ "endTimestamp": "2013-06-11T17:57:00.301Z"
+ },
+ "distance": 13809,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 405943794,
+ "lngE7": -1050576858
+ }, {
+ "latE7": 405226554,
+ "lngE7": -1049873504
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 13109.700811960223,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T18:00:04.631Z",
+ "endTimestamp": "2013-06-11T18:12:26.089Z"
+ },
+ "distance": 242,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T18:16:01.373Z",
+ "endTimestamp": "2013-06-11T18:33:48.245Z"
+ },
+ "distance": 15864,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 403612250,
+ "longitudeE7": -1049859304
+ },
+ "endLocation": {
+ "latitudeE7": 396515575,
+ "longitudeE7": -1048504373
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T18:33:48.245Z",
+ "endTimestamp": "2013-06-11T19:29:27.072Z"
+ },
+ "distance": 87153,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 403613891,
+ "lngE7": -1049855194
+ }, {
+ "latE7": 397751197,
+ "lngE7": -1048597488
+ }, {
+ "latE7": 396579399,
+ "lngE7": -1048419265
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 93474.74225101245,
+ "travelMode": "DRIVE",
+ "confidence": 0.9938642173061917
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 397750969,
+ "lngE7": -1048597488,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-11T19:13:56.421Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T19:29:27.072Z",
+ "endTimestamp": "2013-06-11T23:15:03.444Z"
+ },
+ "distance": 747,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396559547,
+ "longitudeE7": -1048506819
+ },
+ "endLocation": {
+ "latitudeE7": 396957465,
+ "longitudeE7": -1050771049
+ },
+ "duration": {
+ "startTimestamp": "2013-06-11T23:47:37.753Z",
+ "endTimestamp": "2013-06-12T00:47:30.345Z"
+ },
+ "distance": 23549,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396560058,
+ "lngE7": -1048507080
+ }, {
+ "latE7": 396616897,
+ "lngE7": -1048434371
+ }, {
+ "latE7": 396535186,
+ "lngE7": -1050508499
+ }, {
+ "latE7": 396548347,
+ "lngE7": -1050531997
+ }, {
+ "latE7": 396957740,
+ "lngE7": -1050776138
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 29951.836686856415,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396613274,
+ "lngE7": -1048434372,
+ "accuracyMeters": 41,
+ "timestamp": "2013-06-11T23:51:03.085Z"
+ }, {
+ "latE7": 396533432,
+ "lngE7": -1050506821,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-12T00:32:48.424Z"
+ }, {
+ "latE7": 396548386,
+ "lngE7": -1050530243,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-12T00:33:49.541Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 396948955,
+ "longitudeE7": -1050787783,
+ "placeId": "ChIJqW29QP2Aa4cR-tiurJP89x8",
+ "address": "1275 S Teller St, Lakewood, CO 80232, USA",
+ "name": "O\u0027Connell Middle School",
+ "locationConfidence": 33.869743
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T00:56:52.103Z",
+ "endTimestamp": "2013-06-12T02:20:28.860Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 396957912,
+ "centerLngE7": -1050776546,
+ "visitConfidence": 36,
+ "otherCandidateLocations": [{
+ "latitudeE7": 396942360,
+ "longitudeE7": -1050773765,
+ "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho",
+ "address": "1295 S Reed St, Lakewood, CO 80232, USA",
+ "name": "Lakewood Link Recreation Center",
+ "locationConfidence": 29.153141,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 396949730,
+ "longitudeE7": -1050786000,
+ "placeId": "ChIJqW29QP2Aa4cRCsVoML8r-8k",
+ "address": "1275 S Teller St, Lakewood, CO 80232, USA",
+ "name": "Jeffco Boys \u0026 Girls Club",
+ "locationConfidence": 6.732411,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 396981370,
+ "longitudeE7": -1050823390,
+ "placeId": "ChIJx-yUBR2Ba4cR4DcsBBIWbk4",
+ "address": "1057 S Wadsworth Blvd #20, Lakewood, CO 80226, USA",
+ "name": "Barley Haven HomeBrew",
+ "locationConfidence": 2.1184638
+ }, {
+ "latitudeE7": 396969153,
+ "longitudeE7": -1050801064,
+ "placeId": "ChIJG5OUBR2Ba4cRVI3gtoyUOvk",
+ "address": "1050 S Wadsworth Blvd, Lakewood, CO 80226, USA",
+ "name": "Nite Owl Sports Bar \u0026 Grill",
+ "locationConfidence": 2.0782213
+ }, {
+ "latitudeE7": 397114945,
+ "longitudeE7": -1050677448,
+ "placeId": "ChIJw9FuvdeGa4cRLEWfux3io4o",
+ "address": "6401 W Alameda Ave, Lakewood, CO 80226, USA",
+ "name": "Daddy Danks",
+ "locationConfidence": 1.5002738
+ }, {
+ "latitudeE7": 396966880,
+ "longitudeE7": -1050776140,
+ "placeId": "ChIJj2R_z-KAa4cRE0hkAyEm6Uo",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Teller St",
+ "locationConfidence": 0.9200399
+ }, {
+ "latitudeE7": 396955600,
+ "longitudeE7": -1050800619,
+ "placeId": "ChIJy0UbswKBa4cRe2NQnUU0nWc",
+ "address": "7510 W Mississippi Ave, Lakewood, CO 80226, USA",
+ "name": "Sheet Metal Workers International Association",
+ "locationConfidence": 0.9126805
+ }, {
+ "latitudeE7": 396952266,
+ "longitudeE7": -1050811066,
+ "placeId": "ChIJ04L-zQKBa4cRVVGl5IIYxYA",
+ "address": "1200 S Wadsworth Blvd, Lakewood, CO 80232, USA",
+ "name": "Mcdowell Benjamin D DDS",
+ "locationConfidence": 0.8931693
+ }, {
+ "latitudeE7": 396965847,
+ "longitudeE7": -1050763552,
+ "placeId": "ChIJodFQ1uKAa4cRnqxxz1VpFrA",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Teller St",
+ "locationConfidence": 0.73871195
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 34,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396958115,
+ "longitudeE7": -1050766678
+ },
+ "endLocation": {
+ "latitudeE7": 396942360,
+ "longitudeE7": -1050773765,
+ "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho",
+ "address": "1295 S Reed St, Lakewood, Colorado 80232-5520, United States",
+ "name": "Lakewood Link Recreation Center",
+ "locationConfidence": 32.05793,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T02:37:08.634Z",
+ "endTimestamp": "2013-06-12T02:52:03.380Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396962203,
+ "lngE7": -1050765457
+ }, {
+ "latE7": 396957740,
+ "lngE7": -1050776138
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 232.56400098483394,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 396942360,
+ "longitudeE7": -1050773765,
+ "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho",
+ "address": "1295 S Reed St, Lakewood, Colorado 80232-5520, United States",
+ "name": "Lakewood Link Recreation Center",
+ "locationConfidence": 32.05793,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T02:52:03.380Z",
+ "endTimestamp": "2013-06-12T03:03:03.540Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 396960800,
+ "centerLngE7": -1050771450,
+ "visitConfidence": 71,
+ "otherCandidateLocations": [{
+ "latitudeE7": 396948955,
+ "longitudeE7": -1050787783,
+ "placeId": "ChIJqW29QP2Aa4cR-tiurJP89x8",
+ "address": "1275 S Teller St, Lakewood, CO 80232, USA",
+ "name": "O\u0027Connell Middle School",
+ "locationConfidence": 21.606604
+ }, {
+ "latitudeE7": 396966880,
+ "longitudeE7": -1050776140,
+ "placeId": "ChIJj2R_z-KAa4cRE0hkAyEm6Uo",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Teller St",
+ "locationConfidence": 7.6449733
+ }, {
+ "latitudeE7": 396965847,
+ "longitudeE7": -1050763552,
+ "placeId": "ChIJodFQ1uKAa4cRnqxxz1VpFrA",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Teller St",
+ "locationConfidence": 6.681235
+ }, {
+ "latitudeE7": 396949730,
+ "longitudeE7": -1050786000,
+ "placeId": "ChIJqW29QP2Aa4cRCsVoML8r-8k",
+ "address": "1275 S Teller St, Lakewood, CO 80232, USA",
+ "name": "Jeffco Boys \u0026 Girls Club",
+ "locationConfidence": 6.0340204,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 396967000,
+ "longitudeE7": -1050753640,
+ "placeId": "ChIJYd2-MeOAa4cRkWHINgfQ_dI",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Reed St",
+ "locationConfidence": 4.168259
+ }, {
+ "latitudeE7": 396966070,
+ "longitudeE7": -1050746840,
+ "placeId": "ChIJk6htSuOAa4cRXeQKa3-bZtY",
+ "address": "Lakewood, CO 80232, USA",
+ "name": "W Mississippi Ave \u0026 S Reed St",
+ "locationConfidence": 2.7464833
+ }, {
+ "latitudeE7": 396966920,
+ "longitudeE7": -1050797960,
+ "placeId": "ChIJwye7XB2Ba4cRSiUPQmrh4Mg",
+ "address": "Lakewood, CO 80226, USA",
+ "name": "W Mississippi Ave \u0026 S Vance St",
+ "locationConfidence": 2.3755038
+ }, {
+ "latitudeE7": 396981370,
+ "longitudeE7": -1050823390,
+ "placeId": "ChIJx-yUBR2Ba4cR4DcsBBIWbk4",
+ "address": "1057 S Wadsworth Blvd #20, Lakewood, CO 80226, USA",
+ "name": "Barley Haven HomeBrew",
+ "locationConfidence": 1.3810159
+ }, {
+ "latitudeE7": 396957379,
+ "longitudeE7": -1050753779,
+ "placeId": "ChIJM3QY0PyAa4cRBys-o2vjvso",
+ "address": "1175 S Reed St, Lakewood, CO 80232, USA",
+ "name": "Tie Dye Bandit",
+ "locationConfidence": 0.725362
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 33,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T03:07:13.978Z",
+ "endTimestamp": "2013-06-12T03:12:28.981Z"
+ },
+ "distance": 542,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396827201,
+ "lngE7": -1050645523
+ }, {
+ "latE7": 396823081,
+ "lngE7": -1050700149
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 508.0096558058108,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396822653,
+ "longitudeE7": -1050700159
+ },
+ "endLocation": {
+ "latitudeE7": 396558146,
+ "longitudeE7": -1048434997
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T03:12:28.981Z",
+ "endTimestamp": "2013-06-12T03:45:14.118Z"
+ },
+ "distance": 29852,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396822586,
+ "lngE7": -1050700149
+ }, {
+ "latE7": 396873931,
+ "lngE7": -1050814056
+ }, {
+ "latE7": 397013015,
+ "lngE7": -1050786132
+ }, {
+ "latE7": 396567802,
+ "lngE7": -1048442764
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 33769.871795084444,
+ "travelMode": "DRIVE",
+ "confidence": 0.9999956511736862
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396873932,
+ "lngE7": -1050815887,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-12T03:13:50.657Z"
+ }, {
+ "latE7": 397013245,
+ "lngE7": -1050778809,
+ "accuracyMeters": 85,
+ "timestamp": "2013-06-12T03:17:51.916Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396558146,
+ "longitudeE7": -1048434997
+ },
+ "endLocation": {
+ "latitudeE7": 396556700,
+ "longitudeE7": -1048510404
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T03:45:14.118Z",
+ "endTimestamp": "2013-06-12T05:07:57.646Z"
+ },
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396587398,
+ "lngE7": -1048426170,
+ "accuracyMeters": 9,
+ "timestamp": "2013-06-12T04:07:22.278Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1131.7391787556041
+ }
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396556700,
+ "longitudeE7": -1048510404
+ },
+ "endLocation": {
+ "latitudeE7": 396561030,
+ "longitudeE7": -1048382302
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T05:07:57.646Z",
+ "endTimestamp": "2013-06-12T05:43:38.921Z"
+ },
+ "distance": 226,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396547737,
+ "lngE7": -1048508758
+ }, {
+ "latE7": 396563262,
+ "lngE7": -1048380050
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1250.5786318023095,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396556700,
+ "longitudeE7": -1048510404
+ },
+ "endLocation": {
+ "latitudeE7": 396559547,
+ "longitudeE7": -1048506819
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T05:43:38.921Z",
+ "endTimestamp": "2013-06-12T07:18:52.700Z"
+ },
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396561030,
+ "lngE7": -1048382302,
+ "accuracyMeters": 441,
+ "timestamp": "2013-06-12T05:45:31.313Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2195.427174058311
+ }
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T07:18:52.700Z",
+ "endTimestamp": "2013-06-12T07:42:14.967Z"
+ },
+ "distance": 1011,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396548805,
+ "lngE7": -1048502731
+ }, {
+ "latE7": 396597061,
+ "lngE7": -1048397827
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1701.8367655955908,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 396286634,
+ "longitudeE7": -1048418044,
+ "placeId": "ChIJO9N8BMGIbIcR53Jr1zP5s3g",
+ "address": "4201 South Parker Road, Aurora, Colorado 80014-4203, United States",
+ "name": "Cherry Creek State Park",
+ "locationConfidence": 71.28679
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T12:31:07.568Z",
+ "endTimestamp": "2013-06-12T13:33:51.694Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 396570750,
+ "centerLngE7": -1048474950,
+ "visitConfidence": 55,
+ "otherCandidateLocations": [{
+ "latitudeE7": 396576240,
+ "longitudeE7": -1048460930,
+ "placeId": "ChIJ1dBeJeCHbIcR1T9Hv8idywA",
+ "address": "Aurora, CO 80014, USA",
+ "name": "Nine Mile Station",
+ "locationConfidence": 5.697053
+ }, {
+ "latitudeE7": 396564902,
+ "longitudeE7": -1048549477,
+ "placeId": "ChIJ7ZJkDueHbIcR_Dim_wPcVLI",
+ "address": "Denver, CO 80014, USA",
+ "name": "John F Kennedy Park",
+ "locationConfidence": 3.4584432
+ }, {
+ "latitudeE7": 396574881,
+ "longitudeE7": -1048452500,
+ "placeId": "ChIJM3ND1eGHbIcRmtg9LY_e-qQ",
+ "address": "Dam East/West, CO 80014, USA",
+ "name": "Nine Mile Station",
+ "locationConfidence": 2.5696979
+ }, {
+ "latitudeE7": 396597525,
+ "longitudeE7": -1048481388,
+ "placeId": "ChIJm75hkOGHbIcR8ZPtKi4GcIE",
+ "address": "3105 S Peoria St # K, Aurora, CO 80014, USA",
+ "name": "Big City Burrito",
+ "locationConfidence": 2.450645
+ }, {
+ "latitudeE7": 396598028,
+ "longitudeE7": -1048484677,
+ "placeId": "ChIJexKneeGHbIcRsJMvrM5otRo",
+ "address": "3140 S Parker Rd #7, Aurora, CO 80014, USA",
+ "name": "Masalaa Restaurant",
+ "locationConfidence": 1.650343
+ }, {
+ "latitudeE7": 396575085,
+ "longitudeE7": -1048497588,
+ "placeId": "ChIJIeaC4eCHbIcRfKFrckzBW6Q",
+ "address": "3257 S Parker Rd, Aurora, CO 80014, USA",
+ "name": "Axis at Nine Mile Station",
+ "locationConfidence": 1.6082578
+ }, {
+ "latitudeE7": 396594833,
+ "longitudeE7": -1048485710,
+ "placeId": "ChIJexKneeGHbIcRSytiQONb6ZE",
+ "address": "3140 S Parker Rd, Aurora, CO 80014, USA",
+ "name": "Dairy Queen (Treat)",
+ "locationConfidence": 1.3242298
+ }, {
+ "latitudeE7": 396589912,
+ "longitudeE7": -1048489614,
+ "placeId": "ChIJDxb9DOGHbIcRJybUFn7U0V4",
+ "address": "3259 S Parker Rd, Aurora, CO 80014, USA",
+ "name": "Taco Bell",
+ "locationConfidence": 1.0557847
+ }, {
+ "latitudeE7": 396604709,
+ "longitudeE7": -1048453283,
+ "placeId": "ChIJLSluaQqIbIcR5b64CreWpas",
+ "address": "3190 S Parker Rd, Aurora, CO 80014, USA",
+ "name": "Regatta Plaza Shopping Center",
+ "locationConfidence": 0.6737399
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 65,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T15:43:19.277Z",
+ "endTimestamp": "2013-06-12T15:51:19.342Z"
+ },
+ "distance": 294,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T15:53:22.370Z",
+ "endTimestamp": "2013-06-12T16:03:00.792Z"
+ },
+ "distance": 4446,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396594276,
+ "lngE7": -1048361587
+ }, {
+ "latE7": 396730613,
+ "lngE7": -1047886276
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5214.660893736612,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396854349,
+ "longitudeE7": -1047624168
+ },
+ "endLocation": {
+ "latitudeE7": 396854349,
+ "longitudeE7": -1047624168
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T16:12:15.580Z",
+ "endTimestamp": "2013-06-12T16:27:43.584Z"
+ },
+ "distance": 2234,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T16:27:43.584Z",
+ "endTimestamp": "2013-06-12T16:36:26.601Z"
+ },
+ "distance": 688,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396824552,
+ "longitudeE7": -1047566492
+ },
+ "endLocation": {
+ "latitudeE7": 396738935,
+ "longitudeE7": -1047937511
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T16:38:50.290Z",
+ "endTimestamp": "2013-06-12T16:43:27.032Z"
+ },
+ "distance": 3381,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396740562,
+ "lngE7": -1047801988,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-12T16:40:26.858Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3381.2842110759807
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 396740200,
+ "longitudeE7": -1047940000,
+ "placeId": "ChIJ8SQrFtKJbIcREwATIPX5AGQ",
+ "address": "16701 East Iliff Avenue, Aurora, Colorado 80013, United States",
+ "name": "Treads Bicycle Outfitters",
+ "locationConfidence": 20.607065
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T16:43:27.032Z",
+ "endTimestamp": "2013-06-12T16:58:02.651Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 396738746,
+ "centerLngE7": -1047935346,
+ "visitConfidence": 73,
+ "otherCandidateLocations": [{
+ "latitudeE7": 396748710,
+ "longitudeE7": -1047926510,
+ "placeId": "ChIJg2l7idGJbIcRtvA7oGQE9Dg",
+ "address": "16801 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Unique",
+ "locationConfidence": 11.775674
+ }, {
+ "latitudeE7": 396738270,
+ "longitudeE7": -1047925310,
+ "placeId": "ChIJzwXT9dGJbIcRLgFVi9ukg_I",
+ "address": "16725 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Angelo\u0027s CD\u0027s \u0026 More",
+ "locationConfidence": 8.893172,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 396732232,
+ "longitudeE7": -1047936795,
+ "placeId": "ChIJp3iFENKJbIcRHHnzyi6eFAU",
+ "address": "16710 E. Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Discount Tire",
+ "locationConfidence": 5.895016
+ }, {
+ "latitudeE7": 396749474,
+ "longitudeE7": -1047928129,
+ "placeId": "ChIJ67Cv6dGJbIcR06sxWoKxm4w",
+ "address": "16861 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Iliff Crossings Shopping Center",
+ "locationConfidence": 3.7939167
+ }, {
+ "latitudeE7": 396748277,
+ "longitudeE7": -1047934679,
+ "placeId": "ChIJORcs9NGJbIcRLItk9PCIK24",
+ "address": "16771 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Washtime Laundry",
+ "locationConfidence": 2.40925
+ }, {
+ "latitudeE7": 396738889,
+ "longitudeE7": -1047938889,
+ "placeId": "ChIJjzQe99GJbIcRAF0aTDqLnUs",
+ "locationConfidence": 2.3938067,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 396747949,
+ "longitudeE7": -1047931820,
+ "placeId": "ChIJq7dhH9KJbIcR9hWrbECCZKQ",
+ "address": "16791 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Advance Auto Parts",
+ "locationConfidence": 2.3361843
+ }, {
+ "latitudeE7": 396732032,
+ "longitudeE7": -1047924788,
+ "placeId": "ChIJmf8_-tGJbIcRAG5jCJCOLcw",
+ "address": "16800 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Pizza Hut",
+ "locationConfidence": 2.13857
+ }, {
+ "latitudeE7": 396729754,
+ "longitudeE7": -1047930459,
+ "placeId": "ChIJ_Yg4HdKJbIcRG2M3g9d2oME",
+ "address": "16770 E Iliff Ave, Aurora, CO 80013, USA",
+ "name": "Brakes Plus",
+ "locationConfidence": 2.092444
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 23,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T16:58:02.651Z",
+ "endTimestamp": "2013-06-12T17:00:38.584Z"
+ },
+ "distance": 2637,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396821255,
+ "longitudeE7": -1047639825
+ },
+ "endLocation": {
+ "latitudeE7": 396736952,
+ "longitudeE7": -1047698760
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T17:19:23.360Z",
+ "endTimestamp": "2013-06-12T17:32:22.357Z"
+ },
+ "distance": 588,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396820945,
+ "lngE7": -1047639770
+ }, {
+ "latE7": 396737518,
+ "lngE7": -1047694015
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1193.6777622896673,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T17:39:42.405Z",
+ "endTimestamp": "2013-06-12T17:41:23.583Z"
+ },
+ "distance": 1983,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396968282,
+ "longitudeE7": -1047718488
+ },
+ "endLocation": {
+ "latitudeE7": 396001239,
+ "longitudeE7": -1047098999
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T17:50:17.643Z",
+ "endTimestamp": "2013-06-12T18:11:21.105Z"
+ },
+ "distance": 955,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396968345,
+ "lngE7": -1047718429
+ }, {
+ "latE7": 396001663,
+ "lngE7": -1047099838
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 15130.294497369054,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396094315,
+ "longitudeE7": -1047057112
+ },
+ "endLocation": {
+ "latitudeE7": 396748385,
+ "longitudeE7": -1047943404
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T19:43:34.167Z",
+ "endTimestamp": "2013-06-12T20:02:56.823Z"
+ },
+ "distance": 933,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396092147,
+ "lngE7": -1047057800
+ }, {
+ "latE7": 396748428,
+ "lngE7": -1047942581
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 17462.106039299448,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 396805523,
+ "longitudeE7": -1047687810
+ },
+ "endLocation": {
+ "latitudeE7": 392683062,
+ "longitudeE7": -1037090252
+ },
+ "duration": {
+ "startTimestamp": "2013-06-12T20:42:24.544Z",
+ "endTimestamp": "2013-06-13T00:36:21.936Z"
+ },
+ "distance": 239584,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 396805419,
+ "lngE7": -1047687988
+ }, {
+ "latE7": 396732482,
+ "lngE7": -1047871627
+ }, {
+ "latE7": 387765617,
+ "lngE7": -1048148727
+ }, {
+ "latE7": 388302192,
+ "lngE7": -1048217926
+ }, {
+ "latE7": 392682304,
+ "lngE7": -1037090606
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 124451.36524163227,
+ "travelMode": "DRIVE",
+ "confidence": 0.997878036323693
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 396733589,
+ "lngE7": -1047871094,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-12T20:52:18.087Z"
+ }, {
+ "latE7": 387764091,
+ "lngE7": -1048145981,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-12T23:00:58.017Z"
+ }, {
+ "latE7": 388302193,
+ "lngE7": -1048217468,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-12T23:12:17.573Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 392683062,
+ "longitudeE7": -1037090252
+ },
+ "endLocation": {
+ "latitudeE7": 405017562,
+ "longitudeE7": -1032632518
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T00:52:55.220Z",
+ "endTimestamp": "2013-06-13T02:38:00.829Z"
+ },
+ "distance": 157237,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 392682304,
+ "lngE7": -1037090606
+ }, {
+ "latE7": 405022468,
+ "lngE7": -1032616958
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 159917.77469273566,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T02:45:41.661Z",
+ "endTimestamp": "2013-06-13T03:29:05.726Z"
+ },
+ "distance": 67542,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 405933341,
+ "lngE7": -1032275695
+ }, {
+ "latE7": 411167755,
+ "lngE7": -1029482498
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 68366.4645554328,
+ "travelMode": "DRIVE",
+ "confidence": 0.9975997783993297
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 411167229,
+ "longitudeE7": -1029482493
+ },
+ "endLocation": {
+ "latitudeE7": 437052380,
+ "longitudeE7": -1036049237
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T16:07:12.553Z",
+ "endTimestamp": "2013-06-13T20:00:58.727Z"
+ },
+ "distance": 329476,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 411167755,
+ "lngE7": -1029482498
+ }, {
+ "latE7": 437552719,
+ "lngE7": -1036119003
+ }, {
+ "latE7": 437049903,
+ "lngE7": -1036039581
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 339284.18763722666,
+ "travelMode": "DRIVE",
+ "confidence": 0.9952125361283094
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 437553368,
+ "lngE7": -1036118851,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-13T19:50:57.719Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 437052380,
+ "longitudeE7": -1036049237
+ },
+ "endLocation": {
+ "latitudeE7": 437052380,
+ "longitudeE7": -1036049237
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T20:00:58.727Z",
+ "endTimestamp": "2013-06-13T20:13:13.288Z"
+ },
+ "distance": 110,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T20:22:05.907Z",
+ "endTimestamp": "2013-06-13T20:48:26.455Z"
+ },
+ "distance": 320,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 438288879,
+ "lngE7": -1036316375
+ }, {
+ "latE7": 438287925,
+ "lngE7": -1036317367
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 13.27050498736698,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T20:48:26.455Z",
+ "endTimestamp": "2013-06-13T21:30:26.017Z"
+ },
+ "distance": 27702,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 438286933,
+ "lngE7": -1036318435
+ }, {
+ "latE7": 439059104,
+ "lngE7": -1035910491
+ }, {
+ "latE7": 438752174,
+ "lngE7": -1034523468
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 25422.686354196572,
+ "travelMode": "DRIVE",
+ "confidence": 0.7340712199479164
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 439059181,
+ "lngE7": -1035910568,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-13T21:16:25.796Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 438752360,
+ "longitudeE7": -1034523821
+ },
+ "endLocation": {
+ "latitudeE7": 439339584,
+ "longitudeE7": -1035579135
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T22:17:12.333Z",
+ "endTimestamp": "2013-06-13T23:25:27.729Z"
+ },
+ "distance": 2707,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 438752174,
+ "lngE7": -1034523468
+ }, {
+ "latE7": 439340209,
+ "lngE7": -1035585098
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 21664.370896395794,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-13T23:25:27.729Z",
+ "endTimestamp": "2013-06-14T06:00:42.750Z"
+ },
+ "distance": 7883,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 443447384,
+ "longitudeE7": -1037765355
+ },
+ "endLocation": {
+ "latitudeE7": 439377977,
+ "longitudeE7": -1035751897
+ },
+ "duration": {
+ "startTimestamp": "2013-06-14T15:37:20.500Z",
+ "endTimestamp": "2013-06-14T16:10:35.835Z"
+ },
+ "distance": 961,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 439377977,
+ "longitudeE7": -1035751897
+ },
+ "endLocation": {
+ "latitudeE7": 439333241,
+ "longitudeE7": -1035756148,
+ "placeId": "ChIJ86M-VuS0YocRQHLEOjjtkMU",
+ "address": "117 Main St, Hill City, SD 57745-5106, United States",
+ "name": "Museum @ Black Hills Institute",
+ "locationConfidence": 21.060524
+ },
+ "duration": {
+ "startTimestamp": "2013-06-14T16:10:35.835Z",
+ "endTimestamp": "2013-06-14T16:18:50.973Z"
+ },
+ "distance": 226,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 439333241,
+ "longitudeE7": -1035756148,
+ "placeId": "ChIJ86M-VuS0YocRQHLEOjjtkMU",
+ "address": "117 Main St, Hill City, SD 57745-5106, United States",
+ "name": "Museum @ Black Hills Institute",
+ "locationConfidence": 21.060524
+ },
+ "duration": {
+ "startTimestamp": "2013-06-14T16:18:50.973Z",
+ "endTimestamp": "2013-06-14T17:24:17.221Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 439336462,
+ "centerLngE7": -1035753598,
+ "visitConfidence": 79,
+ "otherCandidateLocations": [{
+ "latitudeE7": 439328260,
+ "longitudeE7": -1035755997,
+ "placeId": "ChIJUYEQVOS0YocRqTePzpDjwTs",
+ "address": "133 Main St, Hill City, SD 57745, USA",
+ "name": "Alpine Inn",
+ "locationConfidence": 12.827538
+ }, {
+ "latitudeE7": 439337920,
+ "longitudeE7": -1035760864,
+ "placeId": "ChIJTbQqVeS0YocRwpJKESL4BRk",
+ "address": "109 Main St, Hill City, SD 57745, USA",
+ "name": "Super 8 by Wyndham Hill City/Mt Rushmore/ Area",
+ "locationConfidence": 9.08229
+ }, {
+ "latitudeE7": 439332999,
+ "longitudeE7": -1035754344,
+ "placeId": "ChIJ86M-VuS0YocRGtiRGHxTAzI",
+ "address": "117 Main St, Hill City, SD 57745, USA",
+ "name": "Everything Prehistoric",
+ "locationConfidence": 8.190176
+ }, {
+ "latitudeE7": 439337685,
+ "longitudeE7": -1035754700,
+ "placeId": "ChIJ4fA1qeW0YocRoN38iG9lCFA",
+ "address": "201 Main St, Hill City, SD 57745, USA",
+ "name": "Exxon",
+ "locationConfidence": 7.0072603,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 439326225,
+ "longitudeE7": -1035734292,
+ "placeId": "ChIJU2IJoua0YocRw320MYkkEwY",
+ "address": "222 Railroad Ave, Hill City, SD 57745, USA",
+ "name": "Black Hills Central Railroad",
+ "locationConfidence": 4.507811
+ }, {
+ "latitudeE7": 439331231,
+ "longitudeE7": -1035755985,
+ "placeId": "ChIJaeMO-OS0YocRHw8NT8QiU_0",
+ "address": "125 Main St, Hill City, SD 57745, USA",
+ "name": "Harney Peak Inn",
+ "locationConfidence": 4.247291
+ }, {
+ "latitudeE7": 439334601,
+ "longitudeE7": -1035749789,
+ "placeId": "ChIJb5LcU-S0YocRq68fc6DKLfs",
+ "address": "216 Main St, Hill City, SD 57745, USA",
+ "name": "Twisted Pine",
+ "locationConfidence": 3.0068827
+ }, {
+ "latitudeE7": 439330311,
+ "longitudeE7": -1035750784,
+ "placeId": "ChIJHSOYWuS0YocRykz49sHn75A",
+ "address": "148 Main St, Hill City, SD 57745, USA",
+ "name": "Rico\u0027s",
+ "locationConfidence": 2.9371953
+ }, {
+ "latitudeE7": 439319120,
+ "longitudeE7": -1035751895,
+ "placeId": "ChIJdaPGZOS0YocREp-ZSfILLHo",
+ "address": "240 Main St, Hill City, SD 57745, USA",
+ "name": "Mangy Moose Saloon",
+ "locationConfidence": 2.7324083
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 24,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-15T15:31:43.621Z",
+ "endTimestamp": "2013-06-15T20:46:04.591Z"
+ },
+ "distance": 547188,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 439337043,
+ "lngE7": -1035753707
+ }, {
+ "latE7": 436118087,
+ "lngE7": -969509658
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 573599.7974475744,
+ "travelMode": "DRIVE",
+ "confidence": 0.999974112475054
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 436121209,
+ "longitudeE7": -969512463,
+ "placeId": "ChIJi0ZxGA8tiYcR8h-EfeC1vS8",
+ "address": "1001 S Western Ave, Hartford, South Dakota 57033-2012, United States",
+ "name": "Coffee Cup Fuel Stop",
+ "locationConfidence": 63.00063,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-15T20:46:04.591Z",
+ "endTimestamp": "2013-06-15T20:57:28.452Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 436119100,
+ "centerLngE7": -969510000,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 436119554,
+ "longitudeE7": -969508028,
+ "placeId": "ChIJSWusGA8tiYcRyc3tlQk3-h8",
+ "address": "1001 S Western Ave, Hartford, SD 57033, USA",
+ "name": "BP",
+ "locationConfidence": 25.887146,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 436119554,
+ "longitudeE7": -969508028,
+ "placeId": "ChIJSWusGA8tiYcRyc3tlQk3-h8",
+ "address": "1001 S Western Ave, Hartford, SD 57033, USA",
+ "name": "BP",
+ "locationConfidence": 2.270521
+ }, {
+ "latitudeE7": 436112100,
+ "longitudeE7": -969493870,
+ "placeId": "ChIJcZeK_qEtiYcRSeajahHNTZE",
+ "address": "1021 S Diamond Cir, Hartford, SD 57033, USA",
+ "name": "Pinsetter\u0027s Pub \u0026 Pasta Parlor",
+ "locationConfidence": 2.2421687
+ }, {
+ "latitudeE7": 436119750,
+ "longitudeE7": -969509999,
+ "placeId": "ChIJD680KgktiYcRYzlARbFpliY",
+ "name": "AAA ATM, Inc",
+ "locationConfidence": 1.5601811
+ }, {
+ "latitudeE7": 436104139,
+ "longitudeE7": -969490548,
+ "placeId": "ChIJwagtR-5a5okRqQMh3skdD1E",
+ "address": "1031 S Diamond Cir, Hartford, SD 57033, USA",
+ "name": "AmericInn by Wyndham, Hartford SD",
+ "locationConfidence": 1.3081353
+ }, {
+ "latitudeE7": 436112100,
+ "longitudeE7": -969493870,
+ "placeId": "ChIJcZeK_qEtiYcRLNiak_8ctnk",
+ "locationConfidence": 1.2196189
+ }, {
+ "latitudeE7": 436129650,
+ "longitudeE7": -969509720,
+ "placeId": "ChIJz3JYKAktiYcR81cwbJk4Xko",
+ "address": "901 S Western Ave, Hartford, SD 57033, USA",
+ "name": "Tammen Auto \u0026 Tire, Inc.",
+ "locationConfidence": 0.87349993
+ }, {
+ "latitudeE7": 436131720,
+ "longitudeE7": -969496550,
+ "placeId": "ChIJP3lXJgktiYcRHDOa_42Ob9E",
+ "address": "800 S Western Ave, Hartford, SD 57033, USA",
+ "name": "Central States Manufacturing Inc",
+ "locationConfidence": 0.73062086
+ }, {
+ "latitudeE7": 436124030,
+ "longitudeE7": -969489380,
+ "placeId": "ChIJOSsqvw4tiYcRJ-6Pe1equxU",
+ "address": "800 S Western Ave Ste D, Hartford, SD 57033, USA",
+ "name": "Grocott Ink \u0026 Thread",
+ "locationConfidence": 0.40454695
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 58,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "TRANSITIONAL"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-15T20:57:28.452Z",
+ "endTimestamp": "2013-06-15T23:23:48.201Z"
+ },
+ "distance": 224517,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 436119384,
+ "lngE7": -969510879
+ }, {
+ "latE7": 437811355,
+ "lngE7": -962125396
+ }, {
+ "latE7": 448538017,
+ "lngE7": -954836120
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 217910.47668520277,
+ "travelMode": "DRIVE",
+ "confidence": 0.9945752889897529
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 437811356,
+ "lngE7": -962125015,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-15T21:47:30.419Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-15T23:31:53.672Z",
+ "endTimestamp": "2013-06-15T23:34:48.518Z"
+ },
+ "distance": 15535,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-15T23:34:48.518Z",
+ "endTimestamp": "2013-06-16T03:11:42.318Z"
+ },
+ "distance": 204724,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 449603614,
+ "lngE7": -953559036
+ }, {
+ "latE7": 451340217,
+ "lngE7": -949141540
+ }, {
+ "latE7": 450488357,
+ "lngE7": -944080963
+ }, {
+ "latE7": 449701232,
+ "lngE7": -944225540
+ }, {
+ "latE7": 451040458,
+ "lngE7": -945496673
+ }, {
+ "latE7": 452777442,
+ "lngE7": -944383621
+ }, {
+ "latE7": 453083457,
+ "lngE7": -943936538
+ }, {
+ "latE7": 455159759,
+ "lngE7": -944954681
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 107231.67390432091,
+ "travelMode": "DRIVE",
+ "confidence": 0.9998479507529986
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 451340294,
+ "lngE7": -949141541,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T00:00:50.853Z"
+ }, {
+ "latE7": 450488167,
+ "lngE7": -944081421,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-16T00:42:44.044Z"
+ }, {
+ "latE7": 449700813,
+ "lngE7": -944226074,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T01:03:27.076Z"
+ }, {
+ "latE7": 449827003,
+ "lngE7": -943992767,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T01:07:26.978Z"
+ }, {
+ "latE7": 451041031,
+ "lngE7": -945496292,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T01:51:37.124Z"
+ }, {
+ "latE7": 452776756,
+ "lngE7": -944383850,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-16T02:31:47.942Z"
+ }, {
+ "latE7": 453083458,
+ "lngE7": -943935928,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-16T02:45:41.806Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 454578546,
+ "longitudeE7": -945242956
+ },
+ "endLocation": {
+ "latitudeE7": 454578546,
+ "longitudeE7": -945242956
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T03:26:20.273Z",
+ "endTimestamp": "2013-06-16T03:36:50.793Z"
+ },
+ "distance": 705,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 453723239,
+ "longitudeE7": -945394151
+ },
+ "endLocation": {
+ "latitudeE7": 450965441,
+ "longitudeE7": -944105818
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T13:51:14.732Z",
+ "endTimestamp": "2013-06-16T14:53:12.037Z"
+ },
+ "distance": 58563,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 453717880,
+ "lngE7": -945376434
+ }, {
+ "latE7": 454540214,
+ "lngE7": -945200271
+ }, {
+ "latE7": 451875228,
+ "lngE7": -945428543
+ }, {
+ "latE7": 451354331,
+ "lngE7": -945281906
+ }, {
+ "latE7": 450965576,
+ "lngE7": -944105834
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 39690.28273447529,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 454541550,
+ "lngE7": -945200348,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T14:03:16.988Z"
+ }, {
+ "latE7": 451875229,
+ "lngE7": -945428848,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T14:28:00.400Z"
+ }, {
+ "latE7": 451354332,
+ "lngE7": -945282364,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-16T14:36:19.516Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T14:54:45.548Z",
+ "endTimestamp": "2013-06-16T15:12:35.099Z"
+ },
+ "distance": 1470,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 450097649,
+ "longitudeE7": -943592633
+ },
+ "endLocation": {
+ "latitudeE7": 457278903,
+ "longitudeE7": -949516456
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T15:12:35.099Z",
+ "endTimestamp": "2013-06-16T16:23:54.357Z"
+ },
+ "distance": 91485,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 450097694,
+ "lngE7": -943580780
+ }, {
+ "latE7": 451248474,
+ "lngE7": -945207824
+ }, {
+ "latE7": 451382484,
+ "lngE7": -945519332
+ }, {
+ "latE7": 451525459,
+ "lngE7": -946046295
+ }, {
+ "latE7": 453779144,
+ "lngE7": -947286529
+ }, {
+ "latE7": 457278747,
+ "lngE7": -949517974
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 124745.9025996738,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 451248436,
+ "lngE7": -945204239,
+ "accuracyMeters": 60,
+ "timestamp": "2013-06-16T15:21:18.166Z"
+ }, {
+ "latE7": 451382790,
+ "lngE7": -945519333,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-16T15:25:04.079Z"
+ }, {
+ "latE7": 451525803,
+ "lngE7": -946046295,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T15:29:04.237Z"
+ }, {
+ "latE7": 453779259,
+ "lngE7": -947286224,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-16T15:49:04.443Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T16:31:53.538Z",
+ "endTimestamp": "2013-06-16T16:36:53.562Z"
+ },
+ "distance": 543,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 457278747,
+ "lngE7": -949517288
+ }, {
+ "latE7": 457230758,
+ "lngE7": -949507446
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 598.7996164628187,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 457231375,
+ "longitudeE7": -949504325,
+ "placeId": "ChIJh-JkXwCUtVIRfalIOab07hY",
+ "address": "1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States",
+ "name": "McDonald\u0027s",
+ "locationConfidence": 35.974033
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T16:36:53.562Z",
+ "endTimestamp": "2013-06-16T16:48:53.763Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 457230700,
+ "centerLngE7": -949507800,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 457373183,
+ "longitudeE7": -949573772,
+ "placeId": "ChIJJRHZg_-TtVIRj1LHexWj1h8",
+ "name": "Sinclair Lewis House Museum",
+ "locationConfidence": 10.769814
+ }, {
+ "latitudeE7": 457241056,
+ "longitudeE7": -949509327,
+ "placeId": "ChIJiQaRYAeUtVIR-X2oB4vMB9I",
+ "address": "1185 Main St S, Sauk Centre, MN 56378, USA",
+ "name": "Holiday Stationstores",
+ "locationConfidence": 10.565186
+ }, {
+ "latitudeE7": 457225458,
+ "longitudeE7": -949495058,
+ "placeId": "ChIJzy3OXgCUtVIR0aqW62pekv0",
+ "address": "1225 Timberlane Dr, Sauk Centre, MN 56378, USA",
+ "name": "Elmerz Restaurant, Bar \u0026 Event Centre",
+ "locationConfidence": 7.570696
+ }, {
+ "latitudeE7": 457238963,
+ "longitudeE7": -949499765,
+ "placeId": "ChIJs1m5_wCUtVIRGvZQi4nQ9nA",
+ "address": "322 12th St S # 2, Sauk Centre, MN 56378, USA",
+ "name": "J T\u0027s Pub \u0026 Grill LLC",
+ "locationConfidence": 4.4233866
+ }, {
+ "latitudeE7": 457216490,
+ "longitudeE7": -949502670,
+ "placeId": "ChIJB6-HXgCUtVIRbDHchIACe3E",
+ "address": "1230 Timberlane Dr, Sauk Centre, MN 56378, USA",
+ "name": "AmericInn by Wyndham, Sauk Centre",
+ "locationConfidence": 3.5129905
+ }, {
+ "latitudeE7": 457366560,
+ "longitudeE7": -949535710,
+ "placeId": "ChIJa1XGg_-TtVIR5b10TSFOwoQ",
+ "address": "524 4th St S, Sauk Centre, MN 56378, USA",
+ "name": "Sauk Centre Chamber of Commerce",
+ "locationConfidence": 2.5705252
+ }, {
+ "latitudeE7": 457239972,
+ "longitudeE7": -949513981,
+ "placeId": "ChIJiQaRYAeUtVIRpZCVcCDkAfk",
+ "address": "1185 Main St S, Sauk Centre, MN 56378, USA",
+ "name": "Kranz Super Stop Inc",
+ "locationConfidence": 2.2963648
+ }, {
+ "latitudeE7": 457366560,
+ "longitudeE7": -949535710,
+ "placeId": "ChIJa1XGg_-TtVIR5b10TSFOwoQ",
+ "address": "524 4th St S, Sauk Centre, MN 56378, USA",
+ "name": "Sauk Centre Chamber of Commerce",
+ "locationConfidence": 1.9359006
+ }, {
+ "latitudeE7": 457207000,
+ "longitudeE7": -949470000,
+ "placeId": "ChIJRdavnwGUtVIReYpnXPmA2zU",
+ "address": "205 12th St S, Sauk Centre, MN 56378, USA",
+ "name": "Walmart Supercenter",
+ "locationConfidence": 1.7997825
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 36,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 457231375,
+ "longitudeE7": -949504325,
+ "placeId": "ChIJh-JkXwCUtVIRfalIOab07hY",
+ "address": "1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States",
+ "name": "McDonald\u0027s",
+ "locationConfidence": 35.974033
+ },
+ "endLocation": {
+ "latitudeE7": 468505320,
+ "longitudeE7": -967989430,
+ "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc",
+ "address": "1833 University Dr S, Fargo, ND 58103-4941, United States",
+ "name": "Loaf \u0027N Jug",
+ "locationConfidence": 21.749565
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T16:48:53.763Z",
+ "endTimestamp": "2013-06-16T18:39:40.033Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 457230758,
+ "lngE7": -949507446
+ }, {
+ "latE7": 468507194,
+ "lngE7": -967988662
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 206449.9559143526,
+ "travelMode": "DRIVE",
+ "confidence": 0.37438880722078705
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 468505320,
+ "longitudeE7": -967989430,
+ "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc",
+ "address": "1833 University Dr S, Fargo, ND 58103-4941, United States",
+ "name": "Loaf \u0027N Jug",
+ "locationConfidence": 21.749565
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T18:39:40.033Z",
+ "endTimestamp": "2013-06-16T18:53:47.491Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 468509220,
+ "centerLngE7": -967985480,
+ "visitConfidence": 55,
+ "otherCandidateLocations": [{
+ "latitudeE7": 468505527,
+ "longitudeE7": -967976492,
+ "placeId": "ChIJrft70AXMyFIRxD_nJR-pw0c",
+ "address": "1825 11th St S, Fargo, ND 58103, USA",
+ "name": "Nativity Church of Fargo",
+ "locationConfidence": 11.476917
+ }, {
+ "latitudeE7": 468505168,
+ "longitudeE7": -967976682,
+ "placeId": "ChIJH5ttyQXMyFIRa7U1DZEWa6c",
+ "address": "1825 11th St S, Fargo, ND 58103, USA",
+ "name": "Nativity Elementary School",
+ "locationConfidence": 10.767706
+ }, {
+ "latitudeE7": 468527798,
+ "longitudeE7": -967976411,
+ "placeId": "ChIJ0znXQgbMyFIRGrLS6k1TfcI",
+ "address": "1720 S University Dr, Fargo, ND 58103, USA",
+ "name": "Sanford South University",
+ "locationConfidence": 6.4506216
+ }, {
+ "latitudeE7": 469050614,
+ "longitudeE7": -967973738,
+ "placeId": "ChIJzxeekwXMyFIRD2bMnD0_WF4",
+ "address": "1901 N University Dr, Fargo, ND 58102, USA",
+ "name": "Casey\u0027s General Store",
+ "locationConfidence": 5.3429937
+ }, {
+ "latitudeE7": 468513406,
+ "longitudeE7": -967991707,
+ "placeId": "ChIJifS9_AXMyFIRruyxQ2NmC68",
+ "address": "1815 S University Dr, Fargo, ND 58103, USA",
+ "name": "U.S. Bank ATM - Fargo South",
+ "locationConfidence": 3.2146902
+ }, {
+ "latitudeE7": 468505527,
+ "longitudeE7": -967976492,
+ "placeId": "ChIJH5ttyQXMyFIR2YCV1khYvYg",
+ "address": "1825 11th St S, Fargo, ND 58103, USA",
+ "name": "Nativity School Gym",
+ "locationConfidence": 3.0208642
+ }, {
+ "latitudeE7": 468509940,
+ "longitudeE7": -967991178,
+ "placeId": "ChIJheBS7gXMyFIRRqz8RHPETPQ",
+ "address": "1825 S University Dr, Fargo, ND 58103, USA",
+ "name": "Taco Shop",
+ "locationConfidence": 2.0417385
+ }, {
+ "latitudeE7": 468512509,
+ "longitudeE7": -967992420,
+ "placeId": "ChIJxUqY6wXMyFIR0rKUUb19HVE",
+ "address": "1815 S University Dr, Fargo, ND 58103, USA",
+ "name": "U.S. Bank Branch",
+ "locationConfidence": 1.7143031
+ }, {
+ "latitudeE7": 468526589,
+ "longitudeE7": -967974570,
+ "placeId": "ChIJnXVbYQbMyFIRfplspB9MuG0",
+ "address": "1720 S University Dr, Fargo, ND 58103, USA",
+ "name": "Sanford South University Urgent Care",
+ "locationConfidence": 1.5515366
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 24,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "TRANSITIONAL"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 468505320,
+ "longitudeE7": -967989430,
+ "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc",
+ "address": "1833 University Dr S, Fargo, ND 58103-4941, United States",
+ "name": "Loaf \u0027N Jug",
+ "locationConfidence": 21.749565
+ },
+ "endLocation": {
+ "latitudeE7": 493431738,
+ "longitudeE7": -973675776,
+ "placeId": "ChIJcyizD_SOwVIRSAHvdktyLxc",
+ "address": "Anderson Street, Morris, Manitoba R0G 1K0, Canada",
+ "name": "Morris Husky",
+ "locationConfidence": 44.114937
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T18:53:47.491Z",
+ "endTimestamp": "2013-06-16T21:55:35.563Z"
+ },
+ "distance": 282965,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 468507194,
+ "lngE7": -967988662
+ }, {
+ "latE7": 492666206,
+ "lngE7": -973425064
+ }, {
+ "latE7": 493435707,
+ "lngE7": -973674011
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 291299.161080587,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 492666283,
+ "lngE7": -973424606,
+ "accuracyMeters": 89,
+ "timestamp": "2013-06-16T21:42:36.013Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 493431738,
+ "longitudeE7": -973675776,
+ "placeId": "ChIJcyizD_SOwVIRSAHvdktyLxc",
+ "address": "Anderson Street, Morris, Manitoba R0G 1K0, Canada",
+ "name": "Morris Husky",
+ "locationConfidence": 44.114937
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T21:55:35.563Z",
+ "endTimestamp": "2013-06-16T22:11:29.850Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 493432131,
+ "centerLngE7": -973671592,
+ "visitConfidence": 70,
+ "otherCandidateLocations": [{
+ "latitudeE7": 493428794,
+ "longitudeE7": -973654700,
+ "placeId": "ChIJazMRyfmOwVIRDrjNmoNsCxo",
+ "address": "MB-75, Morris, MB R0G 0B0, Canada",
+ "name": "Co-op Cardlock",
+ "locationConfidence": 20.32186
+ }, {
+ "latitudeE7": 493432210,
+ "longitudeE7": -973676091,
+ "placeId": "ChIJE2GqSPSOwVIRb7QrtyaHNmE",
+ "address": "2 Stampede Dr, Morris, MB R0G 1K0, Canada",
+ "name": "HUSKY",
+ "locationConfidence": 18.036856
+ }, {
+ "latitudeE7": 493440530,
+ "longitudeE7": -973670030,
+ "placeId": "ChIJB9Z6iF-OwVIR9wGJUSdJUMc",
+ "address": "733 Main St, Morris, MB R0G 1K0, Canada",
+ "name": "Morris Build-All Centre",
+ "locationConfidence": 7.9248652
+ }, {
+ "latitudeE7": 493445559,
+ "longitudeE7": -973643382,
+ "placeId": "ChIJB9Z6iF-OwVIRJDzyuJIJAV0",
+ "address": "654 Main St S, Morris, MB R0G 1K0, Canada",
+ "name": "Morris Bigway Foods",
+ "locationConfidence": 6.7072554
+ }, {
+ "latitudeE7": 493418234,
+ "longitudeE7": -973666401,
+ "placeId": "ChIJL1IjnvmOwVIRSF16ks0k_YQ",
+ "locationConfidence": 1.5648307
+ }, {
+ "latitudeE7": 493460794,
+ "longitudeE7": -973657872,
+ "placeId": "ChIJE2GqSPSOwVIRJ4wvdNPs07o",
+ "address": "Lord Selkirk Hwy, Morris, MB R0G 1K0, Canada",
+ "name": "Bill\u0027s Pizza",
+ "locationConfidence": 0.70615375
+ }, {
+ "latitudeE7": 493438378,
+ "longitudeE7": -973634015,
+ "placeId": "ChIJdSTJEPiOwVIRK6TBnM_uMgI",
+ "locationConfidence": 0.20774738
+ }, {
+ "latitudeE7": 493438378,
+ "longitudeE7": -973634015,
+ "placeId": "ChIJdSTJEPiOwVIRDtR7GImcY48",
+ "locationConfidence": 0.20774738
+ }, {
+ "latitudeE7": 493438378,
+ "longitudeE7": -973634015,
+ "placeId": "ChIJdSTJEPiOwVIRNN9djAmnyS8",
+ "locationConfidence": 0.20774738
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 43,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T22:11:29.850Z",
+ "endTimestamp": "2013-06-16T22:13:19.499Z"
+ },
+ "distance": 6583,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T22:13:19.499Z",
+ "endTimestamp": "2013-06-16T23:00:31.090Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 493967285,
+ "lngE7": -973265914
+ }, {
+ "latE7": 498951034,
+ "lngE7": -971427993
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 60257.80912845777,
+ "travelMode": "DRIVE",
+ "confidence": 0.9999554567468341
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498949340,
+ "longitudeE7": -971423496,
+ "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada",
+ "name": "The Marlborough Hotel",
+ "locationConfidence": 13.45591
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T23:00:31.090Z",
+ "endTimestamp": "2013-06-16T23:39:24.572Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498949392,
+ "centerLngE7": -971428980,
+ "visitConfidence": 68,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 8.330058
+ }, {
+ "latitudeE7": 498949407,
+ "longitudeE7": -971424657,
+ "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Centennial Theatre, Main St., Winnipeg",
+ "locationConfidence": 6.7557755
+ }, {
+ "latitudeE7": 498941390,
+ "longitudeE7": -971433210,
+ "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE",
+ "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada",
+ "name": "MEC Winnipeg",
+ "locationConfidence": 4.511523
+ }, {
+ "latitudeE7": 498936546,
+ "longitudeE7": -971424676,
+ "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc",
+ "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada",
+ "name": "Radisson Hotel Winnipeg Downtown",
+ "locationConfidence": 3.9310546
+ }, {
+ "latitudeE7": 498949231,
+ "longitudeE7": -971423222,
+ "placeId": "ChIJgdptZFlx6lIREOQggBmeq2A",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Joanna\u0027s Cafe",
+ "locationConfidence": 2.6682591
+ }, {
+ "latitudeE7": 454758160,
+ "longitudeE7": -766618031,
+ "placeId": "ChIJkRlLdllx6lIROAUg3ribx1w",
+ "address": "646 O\u0027Brien Rd, Renfrew, ON K7V 0B4, Canada",
+ "name": "Dollarama",
+ "locationConfidence": 2.338892
+ }, {
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 1.821038
+ }, {
+ "latitudeE7": 498954262,
+ "longitudeE7": -971440323,
+ "placeId": "ChIJi2xlFllx6lIRTaX8bbLuwc8",
+ "address": "345 Donald St, Winnipeg, MB R3B 2J1, Canada",
+ "name": "Giant Tiger",
+ "locationConfidence": 1.6268853
+ }, {
+ "latitudeE7": 498944839,
+ "longitudeE7": -971420133,
+ "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M",
+ "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada",
+ "name": "Manitoba Start",
+ "locationConfidence": 1.5217178
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 18,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T23:39:24.572Z",
+ "endTimestamp": "2013-06-16T23:40:25.962Z"
+ },
+ "distance": 139,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498943901,
+ "lngE7": -971431884
+ }, {
+ "latE7": 498933830,
+ "lngE7": -971448364
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 404.57068232717876,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-16T23:49:02.773Z",
+ "endTimestamp": "2013-06-17T01:13:41.340Z"
+ },
+ "distance": 254,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 22.639973
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T01:13:41.340Z",
+ "endTimestamp": "2013-06-17T14:34:48.832Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 498953550,
+ "centerLngE7": -971430149,
+ "visitConfidence": 94,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 12.153744
+ }, {
+ "latitudeE7": 498949340,
+ "longitudeE7": -971423496,
+ "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "The Marlborough Hotel",
+ "locationConfidence": 9.275249
+ }, {
+ "latitudeE7": 498954599,
+ "longitudeE7": -971416623,
+ "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk",
+ "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada",
+ "name": "The Garrick",
+ "locationConfidence": 6.029567
+ }, {
+ "latitudeE7": 498941390,
+ "longitudeE7": -971433210,
+ "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE",
+ "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada",
+ "name": "MEC Winnipeg",
+ "locationConfidence": 3.5570333
+ }, {
+ "latitudeE7": 498949407,
+ "longitudeE7": -971424657,
+ "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Centennial Theatre, Main St., Winnipeg",
+ "locationConfidence": 3.5165713
+ }, {
+ "latitudeE7": 498955346,
+ "longitudeE7": -971435179,
+ "placeId": "ChIJgbiballx6lIR2sCbew3KhDY",
+ "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada",
+ "name": "Enterprise Rent-A-Car",
+ "locationConfidence": 2.3482778
+ }, {
+ "latitudeE7": 498936546,
+ "longitudeE7": -971424676,
+ "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc",
+ "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada",
+ "name": "Radisson Hotel Winnipeg Downtown",
+ "locationConfidence": 2.0340545
+ }, {
+ "latitudeE7": 498955542,
+ "longitudeE7": -971434760,
+ "placeId": "ChIJ0x4Iallx6lIRaGrESW16kd0",
+ "name": "Alamo",
+ "locationConfidence": 1.7633524
+ }, {
+ "latitudeE7": 498953077,
+ "longitudeE7": -971435073,
+ "placeId": "ChIJgbiballx6lIR2sCbew3KhDY",
+ "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada",
+ "name": "Enterprise Rent-A-Car",
+ "locationConfidence": 1.5905956
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 25,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 22.639973
+ },
+ "endLocation": {
+ "latitudeE7": 498955351,
+ "longitudeE7": -971390190,
+ "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc",
+ "locationConfidence": 4.0885134
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T14:34:48.832Z",
+ "endTimestamp": "2013-06-17T14:39:04.140Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498948783,
+ "lngE7": -971426696
+ }, {
+ "latE7": 498958511,
+ "lngE7": -971386795
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 417.77315085219857,
+ "travelMode": "WALK",
+ "confidence": 0.9912438694835642
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498955351,
+ "longitudeE7": -971390190,
+ "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc",
+ "locationConfidence": 4.0885134
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T14:39:04.140Z",
+ "endTimestamp": "2013-06-17T14:50:35.941Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498952200,
+ "centerLngE7": -971387211,
+ "visitConfidence": 69,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498955525,
+ "longitudeE7": -971392598,
+ "placeId": "ChIJT4fXoltx6lIR6BSlgoPnkNM",
+ "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada",
+ "name": "GoodLife Fitness Winnipeg Portage \u0026 Main",
+ "locationConfidence": 4.0872416
+ }, {
+ "latitudeE7": 498955401,
+ "longitudeE7": -971391370,
+ "placeId": "ChIJT4fXoltx6lIRF9bPHQ4x0Mw",
+ "address": "201 Portage Ave #100, Winnipeg, MB R3B 3K6, Canada",
+ "name": "Starbucks",
+ "locationConfidence": 3.7639074
+ }, {
+ "latitudeE7": 498954895,
+ "longitudeE7": -971388339,
+ "placeId": "ChIJefBWC1tx6lIRRF8eax3anlc",
+ "locationConfidence": 3.049136
+ }, {
+ "latitudeE7": 498958037,
+ "longitudeE7": -971369775,
+ "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw",
+ "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada",
+ "name": "Fairmont Winnipeg",
+ "locationConfidence": 2.8222806
+ }, {
+ "latitudeE7": 498955220,
+ "longitudeE7": -971391990,
+ "placeId": "ChIJs8aPn1tx6lIRBTloKvIzB5k",
+ "address": "201 Portage Ave #860, Winnipeg, MB R3B 3K6, Canada",
+ "name": "US Consulate Winnipeg",
+ "locationConfidence": 2.808777
+ }, {
+ "latitudeE7": 498956856,
+ "longitudeE7": -971392718,
+ "placeId": "ChIJT4fXoltx6lIRkFn3w1meVh4",
+ "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada",
+ "name": "Culture Days",
+ "locationConfidence": 1.9811295
+ }, {
+ "latitudeE7": 498951398,
+ "longitudeE7": -971385690,
+ "placeId": "ChIJW8NhDFtx6lIRp_5Z_XvqX20",
+ "address": "200 Portage Ave, Winnipeg, MB R3C 3X2, Canada",
+ "name": "Scotiabank",
+ "locationConfidence": 1.8867399
+ }, {
+ "latitudeE7": 498956421,
+ "longitudeE7": -971392796,
+ "placeId": "ChIJT4fXoltx6lIRmdxCYzQFtVQ",
+ "address": "201 Portage Ave, Winnipeg, MB R3C 0B9, Canada",
+ "name": "TD Wealth",
+ "locationConfidence": 1.4974447
+ }, {
+ "latitudeE7": 498951650,
+ "longitudeE7": -971376463,
+ "placeId": "ChIJAbyPEltx6lIRs0AXP-gteHs",
+ "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada",
+ "name": "BMO Bank of Montreal",
+ "locationConfidence": 1.3150122
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 10,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498955351,
+ "longitudeE7": -971390190,
+ "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc",
+ "locationConfidence": 4.0885134
+ },
+ "endLocation": {
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 15.793657,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T14:50:53.361Z",
+ "endTimestamp": "2013-06-17T14:53:32.271Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498950424,
+ "lngE7": -971383132
+ }, {
+ "latE7": 498951683,
+ "lngE7": -971428375
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 480.4587778420977,
+ "travelMode": "WALK",
+ "confidence": 0.8043652233399302
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 15.793657,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T14:53:32.271Z",
+ "endTimestamp": "2013-06-17T15:28:13.664Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498953068,
+ "centerLngE7": -971427880,
+ "visitConfidence": 72,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498949340,
+ "longitudeE7": -971423496,
+ "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "The Marlborough Hotel",
+ "locationConfidence": 7.606468
+ }, {
+ "latitudeE7": 498941390,
+ "longitudeE7": -971433210,
+ "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE",
+ "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada",
+ "name": "MEC Winnipeg",
+ "locationConfidence": 5.773976
+ }, {
+ "latitudeE7": 498954262,
+ "longitudeE7": -971440323,
+ "placeId": "ChIJi2xlFllx6lIRTaX8bbLuwc8",
+ "address": "345 Donald St, Winnipeg, MB R3B 2J1, Canada",
+ "name": "Giant Tiger",
+ "locationConfidence": 4.274851
+ }, {
+ "latitudeE7": 498949407,
+ "longitudeE7": -971424657,
+ "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Centennial Theatre, Main St., Winnipeg",
+ "locationConfidence": 3.8194985
+ }, {
+ "latitudeE7": 498955346,
+ "longitudeE7": -971435179,
+ "placeId": "ChIJgbiballx6lIR2sCbew3KhDY",
+ "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada",
+ "name": "Enterprise Rent-A-Car",
+ "locationConfidence": 3.646239
+ }, {
+ "latitudeE7": 498944839,
+ "longitudeE7": -971420133,
+ "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M",
+ "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada",
+ "name": "Manitoba Start",
+ "locationConfidence": 3.0804288
+ }, {
+ "latitudeE7": 454758160,
+ "longitudeE7": -766618031,
+ "placeId": "ChIJkRlLdllx6lIROAUg3ribx1w",
+ "address": "646 O\u0027Brien Rd, Renfrew, ON K7V 0B4, Canada",
+ "name": "Dollarama",
+ "locationConfidence": 3.0191295
+ }, {
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 2.5304887
+ }, {
+ "latitudeE7": 498949231,
+ "longitudeE7": -971423222,
+ "placeId": "ChIJgdptZFlx6lIREOQggBmeq2A",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Joanna\u0027s Cafe",
+ "locationConfidence": 1.6574311
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 20,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 15.793657,
+ "isCurrentLocation": true
+ },
+ "endLocation": {
+ "latitudeE7": 498994270,
+ "longitudeE7": -971371680,
+ "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8",
+ "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada",
+ "name": "Centennial Concert Hall",
+ "locationConfidence": 31.228584
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T15:28:13.664Z",
+ "endTimestamp": "2013-06-17T15:37:13.411Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498959732,
+ "lngE7": -971420669
+ }, {
+ "latE7": 499005813,
+ "lngE7": -971367034
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 752.6729186281965,
+ "travelMode": "WALK",
+ "confidence": 0.9991718691537653
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498994270,
+ "longitudeE7": -971371680,
+ "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8",
+ "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada",
+ "name": "Centennial Concert Hall",
+ "locationConfidence": 31.228584
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T15:37:13.411Z",
+ "endTimestamp": "2013-06-17T17:54:26.354Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 499004409,
+ "centerLngE7": -971364831,
+ "visitConfidence": 73,
+ "otherCandidateLocations": [{
+ "latitudeE7": 499000253,
+ "longitudeE7": -971364389,
+ "placeId": "ChIJr6oUzEJx6lIRfFLRBjjsZc0",
+ "address": "190 Rupert Ave, Winnipeg, MB R3B 0N2, Canada",
+ "name": "The Manitoba Museum",
+ "locationConfidence": 25.664587
+ }, {
+ "latitudeE7": 496621312,
+ "longitudeE7": -963204271,
+ "placeId": "ChIJ2wkmqBIXwFIR9fz9ex8azYk",
+ "address": "44154 Thurston Rd., Richer, MB R0E 1S0, Canada",
+ "name": "Cripple Creek Campground",
+ "locationConfidence": 3.4010973
+ }, {
+ "latitudeE7": 498994159,
+ "longitudeE7": -971370676,
+ "placeId": "ChIJv2Ht31xx6lIR9iGTQn1hmE0",
+ "address": "555 Main St #1060, Winnipeg, MB R3B 1C3, Canada",
+ "name": "Manitoba Opera",
+ "locationConfidence": 2.6887937
+ }, {
+ "latitudeE7": 499005190,
+ "longitudeE7": -971345142,
+ "placeId": "ChIJ9zkQ8UJx6lIRg-ApoQt2OZk",
+ "address": "145 Pacific Ave, Winnipeg, MB R3B 2Z6, Canada",
+ "name": "Manitoba Alpine Ski Division",
+ "locationConfidence": 2.201894
+ }, {
+ "latitudeE7": 498858225,
+ "longitudeE7": -973281504,
+ "placeId": "ChIJxeLX-BEM6lIRTTH_Uo_dUhA",
+ "address": "3969 Portage Ave, Winnipeg, MB R3K 1W4, Canada",
+ "name": "BellMTS Iceplex",
+ "locationConfidence": 1.9682863
+ }, {
+ "latitudeE7": 499007804,
+ "longitudeE7": -971379835,
+ "placeId": "ChIJW15BS11x6lIRDzMkFBFPUqM",
+ "address": "554 Main St, Winnipeg, MB R3B 1C4, Canada",
+ "name": "McLaren Hotel",
+ "locationConfidence": 1.6850201
+ }, {
+ "latitudeE7": 498985172,
+ "longitudeE7": -971364408,
+ "placeId": "ChIJFef5M0Nx6lIR_fyuBUjYOFY",
+ "address": "174 Market Ave, Winnipeg, MB R3B 0P8, Canada",
+ "name": "Royal Manitoba Theatre Centre",
+ "locationConfidence": 1.6533964
+ }, {
+ "latitudeE7": 499004257,
+ "longitudeE7": -971368377,
+ "placeId": "ChIJfb0UzEJx6lIRIc8Zy9bwaUc",
+ "locationConfidence": 1.5966308
+ }, {
+ "latitudeE7": 499012561,
+ "longitudeE7": -971359044,
+ "placeId": "ChIJ-WU0qkJx6lIRmyt6WayEvU8",
+ "address": "184 Alexander Ave, Winnipeg, MB R3B 0L6, Canada",
+ "name": "Ukrainian Cultural and Educational Centre",
+ "locationConfidence": 1.5576468
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 32,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498994270,
+ "longitudeE7": -971371680,
+ "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8",
+ "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada",
+ "name": "Centennial Concert Hall",
+ "locationConfidence": 31.228584
+ },
+ "endLocation": {
+ "latitudeE7": 498937387,
+ "longitudeE7": -971339957,
+ "placeId": "ChIJEZ35a0Vx6lIR9HfFTXtB0fE",
+ "address": "1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada",
+ "name": "Shaw Park",
+ "locationConfidence": 32.36701
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T17:54:26.354Z",
+ "endTimestamp": "2013-06-17T18:08:22.760Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 499005737,
+ "lngE7": -971366806
+ }, {
+ "latE7": 499009284,
+ "lngE7": -971363677
+ }, {
+ "latE7": 498976287,
+ "lngE7": -971334915
+ }, {
+ "latE7": 498941612,
+ "lngE7": -971354217
+ }, {
+ "latE7": 498952560,
+ "lngE7": -971326904
+ }, {
+ "latE7": 498945083,
+ "lngE7": -971322784
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 893.7103634366721,
+ "travelMode": "WALK",
+ "confidence": 0.9998861648911664
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 499010811,
+ "lngE7": -971362228,
+ "accuracyMeters": 40,
+ "timestamp": "2013-06-17T17:54:26.354Z"
+ }, {
+ "latE7": 498979263,
+ "lngE7": -971331024,
+ "accuracyMeters": 51,
+ "timestamp": "2013-06-17T18:02:12.625Z"
+ }, {
+ "latE7": 498939972,
+ "lngE7": -971351776,
+ "accuracyMeters": 25,
+ "timestamp": "2013-06-17T18:07:20.588Z"
+ }, {
+ "latE7": 498952866,
+ "lngE7": -971325302,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-17T18:08:22.760Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498937387,
+ "longitudeE7": -971339957,
+ "placeId": "ChIJEZ35a0Vx6lIR9HfFTXtB0fE",
+ "address": "1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada",
+ "name": "Shaw Park",
+ "locationConfidence": 32.36701
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T18:08:22.760Z",
+ "endTimestamp": "2013-06-17T18:19:23.428Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498944943,
+ "centerLngE7": -971328057,
+ "visitConfidence": 63,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498938935,
+ "longitudeE7": -971340164,
+ "placeId": "ChIJm68uFkVx6lIR9R5Ee_D-Lag",
+ "address": "1 Portage Ave E, Winnipeg, MB R3B 3N3, Canada",
+ "name": "Winnipeg Goldeyes Baseball Club",
+ "locationConfidence": 9.984342
+ }, {
+ "latitudeE7": 498930690,
+ "longitudeE7": -971332270,
+ "placeId": "ChIJ52glbEVx6lIRx7NBYRxWs_o",
+ "address": "1 Portage Ave E #3, Winnipeg, MB R3B 3N3, Canada",
+ "name": "Clay Oven",
+ "locationConfidence": 7.8316045,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498959470,
+ "longitudeE7": -971380360,
+ "placeId": "ChIJd_1FaVtx6lIRzi99yIk0UC8",
+ "address": "1 Lombard Pl #600, Winnipeg, MB R3B 0Y1, Canada",
+ "name": "David Aplin Group",
+ "locationConfidence": 3.5898688
+ }, {
+ "latitudeE7": 498949182,
+ "longitudeE7": -971328441,
+ "placeId": "ChIJeefJ_kRx6lIRnrRLpvGARFE",
+ "address": "Winnipeg, MB R3C, Canada",
+ "name": "Southbound Waterfront at Lombard",
+ "locationConfidence": 3.440532
+ }, {
+ "latitudeE7": 498962180,
+ "longitudeE7": -971380953,
+ "placeId": "ChIJd_1FaVtx6lIRSZEawAziRqY",
+ "address": "1240 – One Lombard Place, Winnipeg, MB R3B 0V9, Canada",
+ "name": "Wynward Insurance Group",
+ "locationConfidence": 1.6366597
+ }, {
+ "latitudeE7": 498970323,
+ "longitudeE7": -971328837,
+ "placeId": "ChIJCWXlfkRx6lIR1rzR6bfogQE",
+ "address": "130 Galt Ave, Winnipeg, MB R3B 0M3, Canada",
+ "name": "Stephen Juba Park",
+ "locationConfidence": 1.5821978
+ }, {
+ "latitudeE7": 498632080,
+ "longitudeE7": -971852597,
+ "placeId": "ChIJd_1FaVtx6lIRaGKP2yw2D-Q",
+ "address": "100-443 Academy Rd, Winnipeg, MB R3N 1X1, Canada",
+ "name": "Loka Clothing \u0026 Accessories",
+ "locationConfidence": 1.145952
+ }, {
+ "latitudeE7": 498958037,
+ "longitudeE7": -971369775,
+ "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw",
+ "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada",
+ "name": "Fairmont Winnipeg",
+ "locationConfidence": 1.1443303
+ }, {
+ "latitudeE7": 498957078,
+ "longitudeE7": -971343625,
+ "placeId": "ChIJ_Yk4UN-aX0sRdLBI9O7pR4A",
+ "address": "195 Macewen Rd, Summerside, PE C1N 5Y4, Canada",
+ "name": "WSP",
+ "locationConfidence": 1.1396369
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498952856,
+ "lngE7": -971325271,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-17T18:08:22.760Z"
+ }, {
+ "latE7": 498952856,
+ "lngE7": -971325271,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-17T18:09:51.877Z"
+ }, {
+ "latE7": 498941840,
+ "lngE7": -971329227,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-17T18:10:53.037Z"
+ }, {
+ "latE7": 498941840,
+ "lngE7": -971329227,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-17T18:12:21.810Z"
+ }, {
+ "latE7": 498941840,
+ "lngE7": -971329227,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-17T18:15:21.772Z"
+ }, {
+ "latE7": 498941840,
+ "lngE7": -971329227,
+ "accuracyMeters": 27,
+ "timestamp": "2013-06-17T18:18:21.525Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 125.72756741892577
+ },
+ "locationConfidence": 33,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T18:19:23.428Z",
+ "endTimestamp": "2013-06-17T18:28:25.731Z"
+ },
+ "distance": 1072,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498945083,
+ "lngE7": -971322784
+ }, {
+ "latE7": 498949966,
+ "lngE7": -971265411
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1266.384475164792,
+ "travelMode": "WALK",
+ "confidence": 0.956357995262264
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T18:33:35.329Z",
+ "endTimestamp": "2013-06-17T18:38:41.244Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498949966,
+ "lngE7": -971265411
+ }, {
+ "latE7": 498974227,
+ "lngE7": -971286163
+ }, {
+ "latE7": 498985252,
+ "lngE7": -971263809
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 515.1413392215139,
+ "travelMode": "WALK",
+ "confidence": 0.8230793472858142
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498972588,
+ "lngE7": -971285172,
+ "accuracyMeters": 45,
+ "timestamp": "2013-06-17T18:37:39.982Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498989845,
+ "longitudeE7": -971253343,
+ "placeId": "ChIJV_fK90Zx6lIRkaafhsfe3BA",
+ "address": "866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada",
+ "name": "Fort Gibraltar",
+ "locationConfidence": 25.25391
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T18:38:41.244Z",
+ "endTimestamp": "2013-06-17T19:11:27.392Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498985661,
+ "centerLngE7": -971263287,
+ "visitConfidence": 75,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498895303,
+ "longitudeE7": -972365224,
+ "placeId": "ChIJu5mtwUBx6lIRS0-mktBObRo",
+ "address": "186 Air Force Way, Winnipeg, MB R3J, Canada",
+ "name": "Air Force Heritage Park",
+ "locationConfidence": 12.974185
+ }, {
+ "latitudeE7": 498987950,
+ "longitudeE7": -971257520,
+ "placeId": "ChIJu5mtwUBx6lIRUgvO1wdOJWM",
+ "address": "Winnipeg, MB R2H, Canada",
+ "name": "The Manitoba Christmas Craft Sale",
+ "locationConfidence": 11.829172
+ }, {
+ "latitudeE7": 498987950,
+ "longitudeE7": -971257520,
+ "placeId": "ChIJu5mtwUBx6lIRGrjZwOeoPO8",
+ "address": "Winnipeg, MB R2H, Canada",
+ "name": "Old Saint-Boniface Walking Tours",
+ "locationConfidence": 11.781609
+ }, {
+ "latitudeE7": 498984706,
+ "longitudeE7": -971241402,
+ "placeId": "ChIJe4WqOjlx6lIRxF2TcOLB-dY",
+ "address": "836 Rue St Joseph, Winnipeg, MB R2Y 0H8, Canada",
+ "name": "Whittier Park",
+ "locationConfidence": 7.8543043
+ }, {
+ "latitudeE7": 498994722,
+ "longitudeE7": -971251488,
+ "placeId": "ChIJF66vkUBx6lIRun6CheBM1XU",
+ "address": "Winnipeg, MB R2H, Canada",
+ "name": "Maison Chaboillez House",
+ "locationConfidence": 6.999331
+ }, {
+ "latitudeE7": 498984750,
+ "longitudeE7": -971398210,
+ "placeId": "ChIJIY03hltx6lIRC7k50ydfVx0",
+ "address": "492 Main St, Winnipeg, MB R3B 1B7, Canada",
+ "name": "Exchange District BIZ",
+ "locationConfidence": 4.2326684
+ }, {
+ "latitudeE7": 498987950,
+ "longitudeE7": -971257520,
+ "placeId": "ChIJu5mtwUBx6lIRH0SY48Jzs6M",
+ "locationConfidence": 2.8435194
+ }, {
+ "latitudeE7": 498987950,
+ "longitudeE7": -971257520,
+ "placeId": "ChIJu5mtwUBx6lIRlspsl0aGhAE",
+ "locationConfidence": 2.7105994
+ }, {
+ "latitudeE7": 498987950,
+ "longitudeE7": -971257520,
+ "placeId": "ChIJu5mtwUBx6lIRmJykg-49Jvk",
+ "locationConfidence": 2.7089252
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 27,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498989845,
+ "longitudeE7": -971253343,
+ "placeId": "ChIJV_fK90Zx6lIRkaafhsfe3BA",
+ "address": "866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada",
+ "name": "Fort Gibraltar",
+ "locationConfidence": 25.25391
+ },
+ "endLocation": {
+ "latitudeE7": 498917283,
+ "longitudeE7": -971228653,
+ "placeId": "ChIJ8V1gGkhx6lIRr2fHnijyQOE",
+ "address": "166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada",
+ "name": "Le Garage",
+ "locationConfidence": 28.909367
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T19:11:27.392Z",
+ "endTimestamp": "2013-06-17T19:23:23.972Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498985252,
+ "lngE7": -971263809
+ }, {
+ "latE7": 498941650,
+ "lngE7": -971144714
+ }, {
+ "latE7": 498918914,
+ "lngE7": -971227798
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 811.7402919283828,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498940887,
+ "lngE7": -971144257,
+ "accuracyMeters": 45,
+ "timestamp": "2013-06-17T19:14:23.434Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498917283,
+ "longitudeE7": -971228653,
+ "placeId": "ChIJ8V1gGkhx6lIRr2fHnijyQOE",
+ "address": "166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada",
+ "name": "Le Garage",
+ "locationConfidence": 28.909367
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T19:23:23.972Z",
+ "endTimestamp": "2013-06-17T20:02:40.505Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498918315,
+ "centerLngE7": -971227341,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498920220,
+ "longitudeE7": -971234812,
+ "placeId": "ChIJZ1f6DUhx6lIR4vgnhkDjIIo",
+ "address": "157 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada",
+ "name": "Dwarf no Cachette Café \u0026 Gift",
+ "locationConfidence": 5.744521
+ }, {
+ "latitudeE7": 498912360,
+ "longitudeE7": -971244690,
+ "placeId": "ChIJ__9PXUhx6lIR-04qMxrGsyo",
+ "address": "130 Provencher Blvd, Winnipeg, MB R2H 0H3, Canada",
+ "name": "Pizza Hotline Stone Fired",
+ "locationConfidence": 5.0575776
+ }, {
+ "latitudeE7": 498888611,
+ "longitudeE7": -971197352,
+ "placeId": "ChIJV-IxEzZx6lIR5fWoO-07raE",
+ "address": "200 Av. de la Cathedrale, Winnipeg, MB R2H 0H7, Canada",
+ "name": "Université de Saint-Boniface",
+ "locationConfidence": 4.531164
+ }, {
+ "latitudeE7": 498919891,
+ "longitudeE7": -971222333,
+ "placeId": "ChIJ3TBgpmFz6lIRTfo_AVSzg6c",
+ "locationConfidence": 3.9552674
+ }, {
+ "latitudeE7": 498923840,
+ "longitudeE7": -971223520,
+ "placeId": "ChIJ4-3v_Tdx6lIRm-tfsUzYw14",
+ "address": "179 Provencher Blvd, Winnipeg, MB R2H 0G4, Canada",
+ "name": "National Bank",
+ "locationConfidence": 2.5322363
+ }, {
+ "latitudeE7": 498918330,
+ "longitudeE7": -971247670,
+ "placeId": "ChIJYfVRYUhx6lIRkgkY2n2GZYE",
+ "address": "114-131 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada",
+ "name": "Q-Power Communications",
+ "locationConfidence": 2.0694814
+ }, {
+ "latitudeE7": 498909360,
+ "longitudeE7": -971231440,
+ "placeId": "ChIJ-_9hOUhx6lIRZG5wFnMI8T8",
+ "locationConfidence": 1.8025706
+ }, {
+ "latitudeE7": 498922186,
+ "longitudeE7": -971210267,
+ "placeId": "ChIJ-yzO8zdx6lIRb4Rf-RRMOb4",
+ "address": "202 Provencher Blvd, Winnipeg, MB R2H 0G3, Canada",
+ "name": "Café Postal",
+ "locationConfidence": 1.6363338
+ }, {
+ "latitudeE7": 498920489,
+ "longitudeE7": -971224927,
+ "placeId": "ChIJBSqgD0hx6lIRsAxjFF7eSzQ",
+ "address": "169 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada",
+ "name": "City Centre Auto",
+ "locationConfidence": 1.546998
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 30,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T20:02:40.505Z",
+ "endTimestamp": "2013-06-17T20:08:38.153Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498918914,
+ "lngE7": -971227798
+ }, {
+ "latE7": 498910369,
+ "lngE7": -971280822
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 409.4332934253089,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T20:08:38.153Z",
+ "endTimestamp": "2013-06-17T22:43:16.919Z"
+ },
+ "distance": 1157,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 12.802299
+ },
+ "duration": {
+ "startTimestamp": "2013-06-17T22:43:16.919Z",
+ "endTimestamp": "2013-06-18T01:24:09.526Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498952460,
+ "centerLngE7": -971430152,
+ "visitConfidence": 81,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 11.25425
+ }, {
+ "latitudeE7": 498949340,
+ "longitudeE7": -971423496,
+ "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "The Marlborough Hotel",
+ "locationConfidence": 10.349293
+ }, {
+ "latitudeE7": 498941390,
+ "longitudeE7": -971433210,
+ "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE",
+ "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada",
+ "name": "MEC Winnipeg",
+ "locationConfidence": 10.267812
+ }, {
+ "latitudeE7": 498954599,
+ "longitudeE7": -971416623,
+ "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk",
+ "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada",
+ "name": "The Garrick",
+ "locationConfidence": 4.987304
+ }, {
+ "latitudeE7": 498955346,
+ "longitudeE7": -971435179,
+ "placeId": "ChIJgbiballx6lIR2sCbew3KhDY",
+ "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada",
+ "name": "Enterprise Rent-A-Car",
+ "locationConfidence": 4.5866437
+ }, {
+ "latitudeE7": 498949407,
+ "longitudeE7": -971424657,
+ "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Centennial Theatre, Main St., Winnipeg",
+ "locationConfidence": 3.9242735
+ }, {
+ "latitudeE7": 498936546,
+ "longitudeE7": -971424676,
+ "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc",
+ "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada",
+ "name": "Radisson Hotel Winnipeg Downtown",
+ "locationConfidence": 3.2016091
+ }, {
+ "latitudeE7": 498954308,
+ "longitudeE7": -971407927,
+ "placeId": "ChIJ_0OZ6ltx6lIR0G76_1Qqfd4",
+ "address": "216 Notre Dame Ave, Winnipeg, MB R3B 1N6, Canada",
+ "name": "Solid Gold Club",
+ "locationConfidence": 2.4952471
+ }, {
+ "latitudeE7": 498955542,
+ "longitudeE7": -971434760,
+ "placeId": "ChIJ0x4Iallx6lIRaGrESW16kd0",
+ "name": "Alamo",
+ "locationConfidence": 1.4263405
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 17,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T01:24:09.526Z",
+ "endTimestamp": "2013-06-18T01:28:14.903Z"
+ },
+ "distance": 145,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498953437,
+ "lngE7": -971428756
+ }, {
+ "latE7": 498940849,
+ "lngE7": -971425781
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 163.87123114547506,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T01:28:14.903Z",
+ "endTimestamp": "2013-06-18T01:29:56.111Z"
+ },
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498979098,
+ "longitudeE7": -971407404,
+ "placeId": "ChIJvbW3aVxx6lIRvMCQVRc676U",
+ "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada",
+ "name": "Winnipeg International Writers Festival",
+ "locationConfidence": 5.0738072
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T01:29:56.111Z",
+ "endTimestamp": "2013-06-18T02:09:59.602Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498978050,
+ "centerLngE7": -971404150,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498980272,
+ "longitudeE7": -971408817,
+ "placeId": "ChIJeV2miVtx6lIRjQX6vWXHuh8",
+ "address": "100 Arthur St #003, Winnipeg, MB R3B 1H3, Canada",
+ "name": "On Screen Manitoba Inc",
+ "locationConfidence": 3.4836946
+ }, {
+ "latitudeE7": 498972280,
+ "longitudeE7": -971406540,
+ "placeId": "ChIJcSrCcVxx6lIRkGQfEDEWLKU",
+ "address": "231 McDermot Ave, Winnipeg, MB R3B 0S5, Canada",
+ "name": "Mariaggi\u0027s Theme Suite Hotel and Spa",
+ "locationConfidence": 3.4555557
+ }, {
+ "latitudeE7": 498978885,
+ "longitudeE7": -971404449,
+ "placeId": "ChIJo4a1YFdx6lIRUTbdASun7XM",
+ "address": "98 Albert St, Winnipeg, MB R3B 1G2, Canada",
+ "name": "Bodegoes",
+ "locationConfidence": 3.1877067
+ }, {
+ "latitudeE7": 498979862,
+ "longitudeE7": -971394474,
+ "placeId": "ChIJGRtSZFxx6lIROKlbz0gJtVk",
+ "address": "211 Bannatyne Ave, Winnipeg, MB R3B 1M3, Canada",
+ "name": "Across the Board Game Café",
+ "locationConfidence": 3.1599448
+ }, {
+ "latitudeE7": 498980550,
+ "longitudeE7": -971407540,
+ "placeId": "ChIJ11FdaFxx6lIRulu7uaKe1J8",
+ "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada",
+ "name": "Winnipeg Cinematheque",
+ "locationConfidence": 3.0585418
+ }, {
+ "latitudeE7": 498975107,
+ "longitudeE7": -971399480,
+ "placeId": "ChIJ3arTZVxx6lIRZ4_NmlD4u4c",
+ "address": "91 Albert Street Basement, Winnipeg, MB R3B 1G5, Canada",
+ "name": "Natural Cycleworks",
+ "locationConfidence": 2.8559704
+ }, {
+ "latitudeE7": 498988022,
+ "longitudeE7": -971410024,
+ "placeId": "ChIJ5RC2T1xx6lIRdBI_JXBLrC4",
+ "address": "120 King St, Winnipeg, MB R3B 1H9, Canada",
+ "name": "King\u0027s Head Pub",
+ "locationConfidence": 2.214847
+ }, {
+ "latitudeE7": 498984857,
+ "longitudeE7": -971400645,
+ "placeId": "ChIJJ_H9Zlxx6lIRboLtzsEZOrI",
+ "address": "131 Albert St, Winnipeg, MB R3B 1G6, Canada",
+ "name": "Smoke\u0027s Poutinerie",
+ "locationConfidence": 2.1243281
+ }, {
+ "latitudeE7": 498981454,
+ "longitudeE7": -971403914,
+ "placeId": "ChIJ9cUFXVxx6lIRz7O9mWoIsek",
+ "address": "211 Bannatyne Ave, Winnipeg, MB R3B 3P2, Canada",
+ "name": "Winnipeg Police District",
+ "locationConfidence": 2.0398731
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 11,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498979098,
+ "longitudeE7": -971407404,
+ "placeId": "ChIJvbW3aVxx6lIRvMCQVRc676U",
+ "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada",
+ "name": "Winnipeg International Writers Festival",
+ "locationConfidence": 5.0738072
+ },
+ "endLocation": {
+ "latitudeE7": 498979974,
+ "longitudeE7": -971372535,
+ "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg",
+ "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada",
+ "name": "Hermanos South American Steakhouse",
+ "locationConfidence": 12.109326
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T02:09:59.602Z",
+ "endTimestamp": "2013-06-18T02:11:00.566Z"
+ },
+ "distance": 180,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498979974,
+ "longitudeE7": -971372535,
+ "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg",
+ "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada",
+ "name": "Hermanos South American Steakhouse",
+ "locationConfidence": 12.109326
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T02:11:00.566Z",
+ "endTimestamp": "2013-06-18T02:29:12.825Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498976393,
+ "centerLngE7": -971379140,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498980110,
+ "longitudeE7": -971377964,
+ "placeId": "ChIJsf-qvlxx6lIReIXzOYYYUUM",
+ "address": "179 Bannatyne Ave, Winnipeg, MB R3B 0R7, Canada",
+ "name": "Blufish Japanese Restaurant",
+ "locationConfidence": 8.817096
+ }, {
+ "latitudeE7": 498974000,
+ "longitudeE7": -971376040,
+ "placeId": "ChIJ-Xrno1xx6lIRKvxg3NhbNXc",
+ "address": "177 McDermot Ave, Winnipeg, MB R3B 0S1, Canada",
+ "name": "Wee Johnny\u0027s Irish Pub",
+ "locationConfidence": 4.059743
+ }, {
+ "latitudeE7": 498973009,
+ "longitudeE7": -971374092,
+ "placeId": "ChIJxdFkoVxx6lIR2UdK8na8ju8",
+ "address": "173 McDermot Ave, Winnipeg, MB R3B 0S1, Canada",
+ "name": "The Mitchell Block",
+ "locationConfidence": 3.2561479
+ }, {
+ "latitudeE7": 498972860,
+ "longitudeE7": -971378854,
+ "placeId": "ChIJdddsolxx6lIRtn9foDWAS8k",
+ "locationConfidence": 2.2527435
+ }, {
+ "latitudeE7": 498971840,
+ "longitudeE7": -971379110,
+ "placeId": "ChIJMdn9oVxx6lIRNi494L9_LOY",
+ "locationConfidence": 2.0185983
+ }, {
+ "latitudeE7": 498970457,
+ "longitudeE7": -971387290,
+ "placeId": "ChIJxWAAY1xx6lIRsQwjiH8pIaE",
+ "address": "1B6, 456 Main St, Winnipeg, MB R3B 1B7, Canada",
+ "name": "Fox \u0026 Fiddle",
+ "locationConfidence": 1.7900082
+ }, {
+ "latitudeE7": 498974235,
+ "longitudeE7": -971382796,
+ "placeId": "ChIJ8zVpkFxx6lIR7t-r5qp5CJo",
+ "address": "2090 Jefferson Ave, Winnipeg, MB R2R 3A3, Canada",
+ "name": "Bumper Crop Early Learning Centre",
+ "locationConfidence": 1.6236441
+ }, {
+ "latitudeE7": 498977821,
+ "longitudeE7": -971384408,
+ "placeId": "ChIJo5kVkVxx6lIR2gw6pnFqTww",
+ "name": "Passport Photo West",
+ "locationConfidence": 1.5009921
+ }, {
+ "latitudeE7": 498958037,
+ "longitudeE7": -971369775,
+ "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw",
+ "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada",
+ "name": "Fairmont Winnipeg",
+ "locationConfidence": 1.3883173
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 17,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 498979974,
+ "longitudeE7": -971372535,
+ "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg",
+ "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada",
+ "name": "Hermanos South American Steakhouse",
+ "locationConfidence": 12.109326
+ },
+ "endLocation": {
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 12.133938
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T02:29:12.825Z",
+ "endTimestamp": "2013-06-18T02:45:46.829Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498978462,
+ "lngE7": -971377716
+ }, {
+ "latE7": 498940048,
+ "lngE7": -971392517
+ }, {
+ "latE7": 498909606,
+ "lngE7": -971405563
+ }, {
+ "latE7": 498940315,
+ "lngE7": -971407623
+ }, {
+ "latE7": 498946723,
+ "lngE7": -971425476
+ }, {
+ "latE7": 498953590,
+ "lngE7": -971428146
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 584.8094506873913,
+ "travelMode": "WALK",
+ "confidence": 0.9949049079624444
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498940544,
+ "lngE7": -971390457,
+ "accuracyMeters": 15,
+ "timestamp": "2013-06-18T02:34:13.891Z"
+ }, {
+ "latE7": 498910065,
+ "lngE7": -971406708,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-18T02:39:13.958Z"
+ }, {
+ "latE7": 498939590,
+ "lngE7": -971410980,
+ "accuracyMeters": 36,
+ "timestamp": "2013-06-18T02:43:46.105Z"
+ }, {
+ "latE7": 498946075,
+ "lngE7": -971428146,
+ "accuracyMeters": 30,
+ "timestamp": "2013-06-18T02:45:46.829Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498950286,
+ "longitudeE7": -971424978,
+ "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc",
+ "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada",
+ "name": "Regal Beagle Pub",
+ "locationConfidence": 12.133938
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T02:45:46.829Z",
+ "endTimestamp": "2013-06-18T15:49:43.536Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498953092,
+ "centerLngE7": -971428262,
+ "visitConfidence": 93,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498958226,
+ "longitudeE7": -971436390,
+ "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM",
+ "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada",
+ "name": "Burton Cummings Theatre",
+ "locationConfidence": 11.292536
+ }, {
+ "latitudeE7": 498949340,
+ "longitudeE7": -971423496,
+ "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "The Marlborough Hotel",
+ "locationConfidence": 10.798287
+ }, {
+ "latitudeE7": 498941390,
+ "longitudeE7": -971433210,
+ "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE",
+ "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada",
+ "name": "MEC Winnipeg",
+ "locationConfidence": 8.169121
+ }, {
+ "latitudeE7": 498954599,
+ "longitudeE7": -971416623,
+ "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk",
+ "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada",
+ "name": "The Garrick",
+ "locationConfidence": 5.520603
+ }, {
+ "latitudeE7": 498949407,
+ "longitudeE7": -971424657,
+ "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA",
+ "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada",
+ "name": "Centennial Theatre, Main St., Winnipeg",
+ "locationConfidence": 4.094534
+ }, {
+ "latitudeE7": 498955346,
+ "longitudeE7": -971435179,
+ "placeId": "ChIJgbiballx6lIR2sCbew3KhDY",
+ "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada",
+ "name": "Enterprise Rent-A-Car",
+ "locationConfidence": 3.0775685
+ }, {
+ "latitudeE7": 498954308,
+ "longitudeE7": -971407927,
+ "placeId": "ChIJ_0OZ6ltx6lIR0G76_1Qqfd4",
+ "address": "216 Notre Dame Ave, Winnipeg, MB R3B 1N6, Canada",
+ "name": "Solid Gold Club",
+ "locationConfidence": 2.8692768
+ }, {
+ "latitudeE7": 498944839,
+ "longitudeE7": -971420133,
+ "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M",
+ "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada",
+ "name": "Manitoba Start",
+ "locationConfidence": 2.4012368
+ }, {
+ "latitudeE7": 498936546,
+ "longitudeE7": -971424676,
+ "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc",
+ "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada",
+ "name": "Radisson Hotel Winnipeg Downtown",
+ "locationConfidence": 1.7105491
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 17,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T15:49:43.536Z",
+ "endTimestamp": "2013-06-18T15:57:47.135Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498943901,
+ "lngE7": -971431884
+ }, {
+ "latE7": 498935394,
+ "lngE7": -971404953
+ }, {
+ "latE7": 498875160,
+ "lngE7": -971340179
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1649.894539092685,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498935318,
+ "lngE7": -971405258,
+ "accuracyMeters": 49,
+ "timestamp": "2013-06-18T15:50:43.544Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T15:57:47.135Z",
+ "endTimestamp": "2013-06-18T16:00:44.493Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498875160,
+ "lngE7": -971340179
+ }, {
+ "latE7": 498870468,
+ "lngE7": -971306915
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 377.5390655964906,
+ "travelMode": "WALK",
+ "confidence": 0.9620622927498174
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498873038,
+ "longitudeE7": -971309463,
+ "placeId": "ChIJ7_XiiE5x6lIRDco8RsvvpaM",
+ "address": "1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada",
+ "name": "The Original Pancake House",
+ "locationConfidence": 16.196375,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T16:00:44.493Z",
+ "endTimestamp": "2013-06-18T16:21:37.459Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 498872657,
+ "centerLngE7": -971313286,
+ "visitConfidence": 65,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498872736,
+ "longitudeE7": -971313418,
+ "placeId": "ChIJ3yxlj05x6lIRZe49Vd5a2jU",
+ "locationConfidence": 11.813349,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498871675,
+ "longitudeE7": -971313594,
+ "placeId": "ChIJQ1UN101x6lIRod6AOBBrLvU",
+ "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada",
+ "name": "The Forks",
+ "locationConfidence": 7.8584557,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498874090,
+ "longitudeE7": -971313246,
+ "placeId": "ChIJ7_XiiE5x6lIRAjmD9U76iQ0",
+ "address": "1 Forks Market Rd #106, Winnipeg, MB R3C 4L9, Canada",
+ "name": "Ellement Wine + Spirits",
+ "locationConfidence": 6.725011,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498873433,
+ "longitudeE7": -971310729,
+ "placeId": "ChIJ7_XiiE5x6lIRTY4LjMMB0go",
+ "address": "564 Main St, Winnipeg, MB R3B 1C6, Canada",
+ "name": "Sk8 Skates",
+ "locationConfidence": 5.4158144,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498867994,
+ "longitudeE7": -971313345,
+ "placeId": "ChIJ7_XiiE5x6lIRaXP4OPm8W7M",
+ "address": "Parking lot, 1 Forks Market Rd, Winnipeg, MB R3C 0A2, Canada",
+ "name": "Danny\u0027s All Day Breakfast",
+ "locationConfidence": 4.6309257,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498867202,
+ "longitudeE7": -971314768,
+ "placeId": "ChIJ7_XiiE5x6lIR5kxSl_7DpTY",
+ "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada",
+ "name": "Beachcomber",
+ "locationConfidence": 3.559982,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498870659,
+ "longitudeE7": -971314518,
+ "placeId": "ChIJ7_XiiE5x6lIRnz19DCT3JVw",
+ "address": "1 Forks Market Rd, Winnipeg, MB R3C 4Y3, Canada",
+ "name": "Tall Grass Prairie Bread Co.",
+ "locationConfidence": 3.4041603,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498977727,
+ "longitudeE7": -971384353,
+ "placeId": "ChIJOfviiE5x6lIRmftMEPT-Y1g",
+ "address": "433 Main St Unit 100, Winnipeg, MB R3B 1B3, Canada",
+ "name": "Generation Green in The Exchange",
+ "locationConfidence": 3.1507223,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 498871675,
+ "longitudeE7": -971313594,
+ "placeId": "ChIJQ1UN101x6lIRod6AOBBrLvU",
+ "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada",
+ "name": "The Forks",
+ "locationConfidence": 2.9484973,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 20,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T16:21:37.459Z",
+ "endTimestamp": "2013-06-18T16:25:04.783Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498867607,
+ "lngE7": -971310958
+ }, {
+ "latE7": 498892898,
+ "lngE7": -971316909
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 353.295973512393,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T16:25:04.783Z",
+ "endTimestamp": "2013-06-18T16:45:29.816Z"
+ },
+ "distance": 10442,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498892898,
+ "lngE7": -971316909
+ }, {
+ "latE7": 498911857,
+ "lngE7": -971324462
+ }, {
+ "latE7": 498892898,
+ "lngE7": -971352386
+ }, {
+ "latE7": 498773956,
+ "lngE7": -972705917
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 10798.192452584037,
+ "travelMode": "DRIVE",
+ "confidence": 0.9999980560027785
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498911743,
+ "lngE7": -971324234,
+ "accuracyMeters": 20,
+ "timestamp": "2013-06-18T16:26:04.993Z"
+ }, {
+ "latE7": 498892632,
+ "lngE7": -971353760,
+ "accuracyMeters": 10,
+ "timestamp": "2013-06-18T16:29:13.990Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 498827586,
+ "longitudeE7": -972884196,
+ "placeId": "ChIJIYhYcoUM6lIRzPvdS_Slt34",
+ "address": "3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada",
+ "name": "Real Canadian Superstore",
+ "locationConfidence": 66.230965
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T16:48:01.386Z",
+ "endTimestamp": "2013-06-18T17:32:25.913Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 498820862,
+ "centerLngE7": -972883988,
+ "visitConfidence": 65,
+ "otherCandidateLocations": [{
+ "latitudeE7": 498804954,
+ "longitudeE7": -972883166,
+ "placeId": "ChIJJx_dDYUM6lIRMKmmfqoyFB8",
+ "address": "3180 Portage Ave, Winnipeg, MB R3K 0Y5, Canada",
+ "name": "Historical Museum of St James",
+ "locationConfidence": 2.3640113
+ }, {
+ "latitudeE7": 498820280,
+ "longitudeE7": -972887880,
+ "placeId": "ChIJ7aEvc4UM6lIRPgzWosVCmSE",
+ "address": "3193 Portage Ave, Winnipeg, MB R3K 0W4, Canada",
+ "name": "President\u0027s Choice Financial Pavilion and ATM",
+ "locationConfidence": 2.203087
+ }, {
+ "latitudeE7": 498827959,
+ "longitudeE7": -972884093,
+ "placeId": "ChIJIQZG45oM6lIRd-oiU3KMdmg",
+ "address": "3193 Portage Ave, Winnipeg, MB R3K 0W4, Canada",
+ "name": "The Mobile Shop",
+ "locationConfidence": 2.0053961
+ }, {
+ "latitudeE7": 498804329,
+ "longitudeE7": -972875481,
+ "placeId": "ChIJgW95O4UM6lIRU_G74xD3YDw",
+ "address": "3166 Portage Ave Unit #6, Winnipeg, MB R3K 0Y5, Canada",
+ "name": "Canadian Healthcare Products",
+ "locationConfidence": 1.3943716
+ }, {
+ "latitudeE7": 498815610,
+ "longitudeE7": -972903230,
+ "placeId": "ChIJp8DWH4gM6lIROYANmujIALI",
+ "address": "3217 Portage Ave, Winnipeg, MB R3K 0W5, Canada",
+ "name": "Assiniboine Credit Union",
+ "locationConfidence": 1.2170662
+ }, {
+ "latitudeE7": 498810018,
+ "longitudeE7": -972854951,
+ "placeId": "ChIJ2_fvMoUM6lIRW8EqKeflsJE",
+ "address": "3735 Portage Ave, Winnipeg, MB R3K 2A8, Canada",
+ "name": "Gondola Pizza Restaurants",
+ "locationConfidence": 1.1024776
+ }, {
+ "latitudeE7": 498805070,
+ "longitudeE7": -972874119,
+ "placeId": "ChIJxbMgGIUM6lIRFkPg1kDeVZs",
+ "address": "3166 Portage Ave, Winnipeg, MB R3K 0Y5, Canada",
+ "name": "Pizza Hotline",
+ "locationConfidence": 1.0602415
+ }, {
+ "latitudeE7": 498817068,
+ "longitudeE7": -972894176,
+ "placeId": "ChIJFUnTnIUM6lIR5egsliXM9yQ",
+ "name": "Headingley Traffic Services",
+ "locationConfidence": 0.9196489
+ }, {
+ "latitudeE7": 498811201,
+ "longitudeE7": -972871857,
+ "placeId": "ChIJozboPoUM6lIRN01KPwLJrBc",
+ "address": "3161 Portage Ave, Winnipeg, MB R3K 0W4, Canada",
+ "name": "Crosstown Civic Credit Union",
+ "locationConfidence": 0.75107455
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 61,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T17:32:25.913Z",
+ "endTimestamp": "2013-06-18T19:40:27.214Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 498817100,
+ "lngE7": -972883834
+ }, {
+ "latE7": 498834991,
+ "lngE7": -972958145
+ }, {
+ "latE7": 499050827,
+ "lngE7": -977601852
+ }, {
+ "latE7": 502262611,
+ "lngE7": -994764328
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 181130.26935862022,
+ "travelMode": "DRIVE",
+ "confidence": 0.9493489100775365
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 498833961,
+ "lngE7": -972958145,
+ "accuracyMeters": 35,
+ "timestamp": "2013-06-18T17:34:30.057Z"
+ }, {
+ "latE7": 499057198,
+ "lngE7": -977601700,
+ "accuracyMeters": 35,
+ "timestamp": "2013-06-18T18:01:46.653Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 502260310,
+ "longitudeE7": -994764643
+ },
+ "endLocation": {
+ "latitudeE7": 506519732,
+ "longitudeE7": -999674340
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T19:45:55.425Z",
+ "endTimestamp": "2013-06-18T21:02:48.525Z"
+ },
+ "distance": 86450,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 502262611,
+ "lngE7": -994764633
+ }, {
+ "latE7": 506514396,
+ "lngE7": -999667663
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 79326.78522666969,
+ "travelMode": "DRIVE",
+ "confidence": 0.9914256879420451
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 506519732,
+ "longitudeE7": -999674340
+ },
+ "endLocation": {
+ "latitudeE7": 506519732,
+ "longitudeE7": -999674340
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T21:33:40.351Z",
+ "endTimestamp": "2013-06-18T21:56:07.656Z"
+ },
+ "distance": 814,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 507048858,
+ "longitudeE7": -998095471,
+ "placeId": "ChIJoZf9HkAa5lIRsyv69FkkXhc",
+ "address": "Division No. 17, Unorganized, Manitoba R0J 2H0, Canada",
+ "name": "Whirlpool Lake Campground",
+ "locationConfidence": 100.0
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T22:02:16Z",
+ "endTimestamp": "2013-06-18T22:17:51Z"
+ },
+ "placeConfidence": "USER_CONFIRMED",
+ "visitConfidence": 100,
+ "otherCandidateLocations": [{
+ "latitudeE7": 506539205,
+ "longitudeE7": -999680676,
+ "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ",
+ "address": "28 Mooswa Dr, Onanole, MB R0J 1N0, Canada",
+ "name": "Mooswa Resort",
+ "locationConfidence": 81.16768
+ }, {
+ "latitudeE7": 506539110,
+ "longitudeE7": -999678610,
+ "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM",
+ "locationConfidence": 18.83232
+ }],
+ "editConfirmationStatus": "CONFIRMED",
+ "locationConfidence": 100,
+ "placeVisitType": "SINGLE_PLACE",
+ "locationAssertionType": "WITHIN_OR_AT",
+ "lastEditedTimestamp": "2018-06-06T23:33:39.231Z",
+ "placeVisitImportance": "MAIN",
+ "editActionMetadata": {
+ "editHistory": {
+ "editEvent": [{
+ "editOperation": ["MODIFY_LOCATION"],
+ "uiConfiguration": {
+ "uiPlaceVisitConfiguration": "YES_NO_OTHER_PLACE_VISIT"
+ }
+ }]
+ }
+ }
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 506526572,
+ "longitudeE7": -999654092
+ },
+ "endLocation": {
+ "latitudeE7": 506519732,
+ "longitudeE7": -999674340
+ },
+ "duration": {
+ "startTimestamp": "2013-06-18T22:17:51Z",
+ "endTimestamp": "2013-06-19T03:37:25Z"
+ },
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 507049524,
+ "lngE7": -998097739,
+ "accuracyMeters": 5,
+ "timestamp": "2013-06-18T23:57:14.050Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 24986.785899568124
+ }
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 507048858,
+ "longitudeE7": -998095471,
+ "placeId": "ChIJoZf9HkAa5lIRsyv69FkkXhc",
+ "address": "Division No. 17, Unorganized, Manitoba R0J 2H0, Canada",
+ "name": "Whirlpool Lake Campground",
+ "locationConfidence": 100.0
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T03:37:25Z",
+ "endTimestamp": "2013-06-19T05:10:11Z"
+ },
+ "placeConfidence": "USER_CONFIRMED",
+ "visitConfidence": 100,
+ "otherCandidateLocations": [{
+ "latitudeE7": 506539205,
+ "longitudeE7": -999680676,
+ "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ",
+ "address": "28 Mooswa Dr, Onanole, MB R0J 1N0, Canada",
+ "name": "Mooswa Resort",
+ "locationConfidence": 89.33212
+ }, {
+ "latitudeE7": 506539110,
+ "longitudeE7": -999678610,
+ "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM",
+ "locationConfidence": 10.667878
+ }],
+ "editConfirmationStatus": "CONFIRMED",
+ "locationConfidence": 100,
+ "placeVisitType": "SINGLE_PLACE",
+ "locationAssertionType": "WITHIN_OR_AT",
+ "lastEditedTimestamp": "2018-06-06T23:33:57.899Z",
+ "placeVisitImportance": "MAIN",
+ "editActionMetadata": {
+ "editHistory": {
+ "editEvent": [{
+ "editOperation": ["MODIFY_LOCATION"],
+ "uiConfiguration": {
+ "uiPlaceVisitConfiguration": "YES_NO_OTHER_PLACE_VISIT"
+ }
+ }]
+ }
+ }
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T15:11:54.086Z",
+ "endTimestamp": "2013-06-19T15:34:51.578Z"
+ },
+ "distance": 402,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 506539205,
+ "longitudeE7": -999680676,
+ "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ",
+ "address": "Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada",
+ "name": "Mooswa Resort",
+ "locationConfidence": 89.21174
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T15:40:18.571Z",
+ "endTimestamp": "2013-06-19T17:18:12.739Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 506522420,
+ "centerLngE7": -999666180,
+ "visitConfidence": 46,
+ "otherCandidateLocations": [{
+ "latitudeE7": 506539110,
+ "longitudeE7": -999678610,
+ "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM",
+ "locationConfidence": 10.788263
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 79,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 506519732,
+ "longitudeE7": -999674340
+ },
+ "endLocation": {
+ "latitudeE7": 507724983,
+ "longitudeE7": -1012810195
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T17:42:44.305Z",
+ "endTimestamp": "2013-06-19T19:22:11.715Z"
+ },
+ "distance": 116828,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 506514396,
+ "lngE7": -999667663
+ }, {
+ "latE7": 507722549,
+ "lngE7": -1012811584
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 121109.6753402924,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 507714829,
+ "longitudeE7": -1013691376,
+ "placeId": "ChIJi_3Bnrup5lIRHZhukh23PTc",
+ "address": "MB-16, Manitoba, Canada",
+ "name": "The Russell Inn",
+ "locationConfidence": 51.95164
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T19:24:35.698Z",
+ "endTimestamp": "2013-06-19T19:47:03.824Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 507724824,
+ "centerLngE7": -1012809159,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 507723587,
+ "longitudeE7": -1012809784,
+ "placeId": "ChIJ9bPN4r2p5lIRMde-Jhp37rs",
+ "address": "MB-16, Russell, MB R0J 1W0, Canada",
+ "name": "Esso",
+ "locationConfidence": 24.61134
+ }, {
+ "latitudeE7": 507725315,
+ "longitudeE7": -1012810338,
+ "placeId": "ChIJQ3aimrup5lIREyeHMY3stk4",
+ "address": "Hwy#16, Russell, MB R0J 1W0, Canada",
+ "name": "Tim Hortons",
+ "locationConfidence": 21.687075
+ }, {
+ "latitudeE7": 507731519,
+ "longitudeE7": -1012801079,
+ "placeId": "ChIJeSlFH7yp5lIR4qeIgYIusaI",
+ "address": "331 Centennial Crescent, Russell, MB R0J 1W0, Canada",
+ "name": "Russell Alliance Church",
+ "locationConfidence": 0.60696167
+ }, {
+ "latitudeE7": 507741070,
+ "longitudeE7": -1012806670,
+ "placeId": "ChIJNYui47up5lIR0bVwu4D2nrw",
+ "name": "Cook Key Locksmithing",
+ "locationConfidence": 0.46371287
+ }, {
+ "latitudeE7": 507721181,
+ "longitudeE7": -1012845307,
+ "placeId": "ChIJhzeap8ap5lIRilnhZhyUpec",
+ "address": "MB-16, Russell, MB R0J 1W0, Canada",
+ "name": "Jolly Lodger Motel",
+ "locationConfidence": 0.3039326
+ }, {
+ "latitudeE7": 507731668,
+ "longitudeE7": -1012772138,
+ "placeId": "ChIJmYWywsip5lIRcYDXvprBWuw",
+ "address": "427 Alexandria Ave, Russell, MB R0J 1W0, Canada",
+ "name": "Russell Health Centre",
+ "locationConfidence": 0.2565745
+ }, {
+ "latitudeE7": 507732143,
+ "longitudeE7": -1012850620,
+ "placeId": "ChIJWR5Fzb2p5lIRYnTu3_3shXU",
+ "address": "402 Memorial Ave, Russell, MB R0J 1W0, Canada",
+ "name": "Margarete\u0027s Massage Therapy",
+ "locationConfidence": 0.11876172
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 49,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T19:51:09.937Z",
+ "endTimestamp": "2013-06-19T20:33:38.911Z"
+ },
+ "distance": 60585,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 507722702,
+ "lngE7": -1012812347
+ }, {
+ "latE7": 509747467,
+ "lngE7": -1020830535
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 63700.216398229095,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 509747411,
+ "longitudeE7": -1020830635
+ },
+ "endLocation": {
+ "latitudeE7": 517943876,
+ "longitudeE7": -1046862138
+ },
+ "duration": {
+ "startTimestamp": "2013-06-19T20:41:34.505Z",
+ "endTimestamp": "2013-06-19T22:52:34.023Z"
+ },
+ "distance": 210758,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 509747467,
+ "lngE7": -1020830535
+ }, {
+ "latE7": 517943611,
+ "lngE7": -1046862106
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 217985.51142265328,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }]
+}
\ No newline at end of file
--- /dev/null
+{
+ "timelineObjects": [{
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 92.20695
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T01:24:28.883Z",
+ "endTimestamp": "2013-05-09T16:55:16.119Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374340997,
+ "centerLngE7": -1221390791,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 3.8165872
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 2.2292604
+ }, {
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.6952479
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.023095831
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.016687157
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k",
+ "locationConfidence": 0.012176437
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:22:15.145Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:24:15.178Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:25:15.195Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:26:15.339Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:29:15.268Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T02:30:16.646Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T13:20:26.474Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T14:41:03.527Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T14:44:03.588Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T14:45:03.600Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T14:46:03.602Z"
+ }, {
+ "latE7": 374335782,
+ "lngE7": -1221388493,
+ "accuracyMeters": 33,
+ "timestamp": "2013-05-09T14:53:34.049Z"
+ }, {
+ "latE7": 374425714,
+ "lngE7": -1221594760,
+ "accuracyMeters": 56,
+ "timestamp": "2013-05-09T15:58:16.388Z"
+ }, {
+ "latE7": 374425714,
+ "lngE7": -1221594760,
+ "accuracyMeters": 56,
+ "timestamp": "2013-05-09T15:59:18.009Z"
+ }, {
+ "latE7": 374425714,
+ "lngE7": -1221594760,
+ "accuracyMeters": 56,
+ "timestamp": "2013-05-09T16:00:20.435Z"
+ }, {
+ "latE7": 374538941,
+ "lngE7": -1221513119,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T16:03:57.315Z"
+ }, {
+ "latE7": 374591987,
+ "lngE7": -1221565460,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T16:06:58.071Z"
+ }, {
+ "latE7": 374618052,
+ "lngE7": -1221555443,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T16:07:58.086Z"
+ }, {
+ "latE7": 374626605,
+ "lngE7": -1221517364,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T16:09:58.228Z"
+ }, {
+ "latE7": 374833578,
+ "lngE7": -1221491409,
+ "accuracyMeters": 15,
+ "timestamp": "2013-05-09T16:25:11.045Z"
+ }, {
+ "latE7": 374832433,
+ "lngE7": -1221484243,
+ "accuracyMeters": 5,
+ "timestamp": "2013-05-09T16:26:20.027Z"
+ }, {
+ "latE7": 374851986,
+ "lngE7": -1221493424,
+ "accuracyMeters": 20,
+ "timestamp": "2013-05-09T16:27:31.017Z"
+ }, {
+ "latE7": 374857968,
+ "lngE7": -1221480905,
+ "accuracyMeters": 25,
+ "timestamp": "2013-05-09T16:28:30.915Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7668.160797623759
+ },
+ "locationConfidence": 82,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T17:41:45.303Z",
+ "endTimestamp": "2013-05-09T18:29:14.734Z"
+ },
+ "distance": 346,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T18:33:12.528Z",
+ "endTimestamp": "2013-05-09T18:34:15.144Z"
+ },
+ "distance": 151,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374859695,
+ "lngE7": -1221462936
+ }, {
+ "latE7": 374847488,
+ "lngE7": -1221476287
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 244.55963437597566,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 84.588234
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T18:34:15.144Z",
+ "endTimestamp": "2013-05-09T20:18:15.862Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374848581,
+ "centerLngE7": -1221473888,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 6.59171
+ }, {
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 5.947295
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 2.8023634
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.045232322
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.01384938
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k",
+ "locationConfidence": 0.011312664
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 76,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T20:18:15.862Z",
+ "endTimestamp": "2013-05-09T20:33:47.164Z"
+ },
+ "distance": 3939,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374859313,
+ "lngE7": -1221480331
+ }, {
+ "latE7": 374859619,
+ "lngE7": -1221504516
+ }, {
+ "latE7": 374813537,
+ "lngE7": -1221506423
+ }, {
+ "latE7": 374654426,
+ "lngE7": -1221572189
+ }, {
+ "latE7": 374549255,
+ "lngE7": -1221645355
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 8472.911890096475,
+ "travelMode": "WALK",
+ "confidence": 0.9839425418903871
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374861183,
+ "lngE7": -1221503067,
+ "accuracyMeters": 15,
+ "timestamp": "2013-05-09T20:19:16.344Z"
+ }, {
+ "latE7": 374813461,
+ "lngE7": -1221505508,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T20:22:17.477Z"
+ }, {
+ "latE7": 374653854,
+ "lngE7": -1221569901,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-09T20:28:41.671Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T20:33:47.164Z",
+ "endTimestamp": "2013-05-09T20:46:16.121Z"
+ },
+ "distance": 1908,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374549255,
+ "lngE7": -1221645355
+ }, {
+ "latE7": 374422569,
+ "lngE7": -1221527786
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2127.2425294508007,
+ "travelMode": "WALK",
+ "confidence": 0.2838991326843637
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T20:46:16.121Z",
+ "endTimestamp": "2013-05-09T20:58:54.448Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374422569,
+ "lngE7": -1221527786
+ }, {
+ "latE7": 374403572,
+ "lngE7": -1221497497
+ }, {
+ "latE7": 374388122,
+ "lngE7": -1221504287
+ }, {
+ "latE7": 374370079,
+ "lngE7": -1221475601
+ }, {
+ "latE7": 374335670,
+ "lngE7": -1221388702
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1565.6315895262032,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374403954,
+ "lngE7": -1221497726,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T20:47:16.179Z"
+ }, {
+ "latE7": 374389000,
+ "lngE7": -1221503906,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-09T20:48:16.225Z"
+ }, {
+ "latE7": 374370308,
+ "lngE7": -1221475372,
+ "accuracyMeters": 15,
+ "timestamp": "2013-05-09T20:49:16.558Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 52.954517
+ },
+ "duration": {
+ "startTimestamp": "2013-05-09T20:58:54.448Z",
+ "endTimestamp": "2013-05-10T22:25:28.248Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374338641,
+ "centerLngE7": -1221390806,
+ "visitConfidence": 43,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374329110,
+ "longitudeE7": -1221400640,
+ "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "First Baptist Church of Palo Alto",
+ "locationConfidence": 8.764264
+ }, {
+ "latitudeE7": 374262553,
+ "longitudeE7": -1221480252,
+ "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY",
+ "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA",
+ "name": "New Mozart School of Music",
+ "locationConfidence": 5.52371
+ }, {
+ "latitudeE7": 374336640,
+ "longitudeE7": -1221385050,
+ "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE",
+ "address": "2205 Waverley St, Palo Alto, CA 94301, USA",
+ "name": "Alameda Investments Inc",
+ "locationConfidence": 4.2271852
+ }, {
+ "latitudeE7": 374328658,
+ "longitudeE7": -1221400533,
+ "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA",
+ "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA",
+ "name": "Peninsula Peace \u0026 Justice Center",
+ "locationConfidence": 3.9824913
+ }, {
+ "latitudeE7": 374331995,
+ "longitudeE7": -1221400810,
+ "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA",
+ "address": "311 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Palo Alto Comm Child Care Pccc",
+ "locationConfidence": 3.51667
+ }, {
+ "latitudeE7": 374328919,
+ "longitudeE7": -1221400171,
+ "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Macrobiotic Dinners",
+ "locationConfidence": 2.6978254
+ }, {
+ "latitudeE7": 374330635,
+ "longitudeE7": -1221391385,
+ "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M",
+ "name": "Ame Coaching",
+ "locationConfidence": 1.6607062
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.5665251
+ }, {
+ "latitudeE7": 374354450,
+ "longitudeE7": -1221406150,
+ "placeId": "ChIJT5M-teK6j4AR1d--W53wjzc",
+ "locationConfidence": 1.5292206
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 50,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374326085,
+ "longitudeE7": -1221391044
+ },
+ "endLocation": {
+ "latitudeE7": 374326085,
+ "longitudeE7": -1221391044
+ },
+ "duration": {
+ "startTimestamp": "2013-05-10T22:55:36.464Z",
+ "endTimestamp": "2013-05-10T23:01:52.925Z"
+ },
+ "distance": 164,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-10T23:01:52.925Z",
+ "endTimestamp": "2013-05-10T23:19:44.431Z"
+ },
+ "distance": 1820,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-10T23:19:44.431Z",
+ "endTimestamp": "2013-05-10T23:22:45.332Z"
+ },
+ "distance": 220,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374225158,
+ "lngE7": -1221565933
+ }, {
+ "latE7": 374211997,
+ "lngE7": -1221544647
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 320.1971935753868,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-10T23:22:45.332Z",
+ "endTimestamp": "2013-05-11T00:02:46.884Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374211692,
+ "lngE7": -1221544876
+ }, {
+ "latE7": 374137344,
+ "lngE7": -1221413116
+ }, {
+ "latE7": 374163475,
+ "lngE7": -1221370468
+ }, {
+ "latE7": 374335899,
+ "lngE7": -1221388397
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3130.8107682597683,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374136276,
+ "lngE7": -1221411057,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-10T23:34:46.127Z"
+ }, {
+ "latE7": 374163475,
+ "lngE7": -1221370468,
+ "accuracyMeters": 5,
+ "timestamp": "2013-05-10T23:38:45.971Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 53.15693
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T00:02:46.884Z",
+ "endTimestamp": "2013-05-11T16:49:43.180Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374336437,
+ "centerLngE7": -1221390489,
+ "visitConfidence": 36,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374329110,
+ "longitudeE7": -1221400640,
+ "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "First Baptist Church of Palo Alto",
+ "locationConfidence": 9.807049
+ }, {
+ "latitudeE7": 374262553,
+ "longitudeE7": -1221480252,
+ "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY",
+ "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA",
+ "name": "New Mozart School of Music",
+ "locationConfidence": 6.189419
+ }, {
+ "latitudeE7": 374328658,
+ "longitudeE7": -1221400533,
+ "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA",
+ "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA",
+ "name": "Peninsula Peace \u0026 Justice Center",
+ "locationConfidence": 4.467295
+ }, {
+ "latitudeE7": 374336640,
+ "longitudeE7": -1221385050,
+ "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE",
+ "address": "2205 Waverley St, Palo Alto, CA 94301, USA",
+ "name": "Alameda Investments Inc",
+ "locationConfidence": 4.138909
+ }, {
+ "latitudeE7": 374331995,
+ "longitudeE7": -1221400810,
+ "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA",
+ "address": "311 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Palo Alto Comm Child Care Pccc",
+ "locationConfidence": 3.4875994
+ }, {
+ "latitudeE7": 374328919,
+ "longitudeE7": -1221400171,
+ "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Macrobiotic Dinners",
+ "locationConfidence": 2.7466137
+ }, {
+ "latitudeE7": 374330635,
+ "longitudeE7": -1221391385,
+ "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M",
+ "name": "Ame Coaching",
+ "locationConfidence": 1.5241222
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.5032207
+ }, {
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.4474936
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 50,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374257117,
+ "longitudeE7": -1221474391
+ },
+ "endLocation": {
+ "latitudeE7": 374253930,
+ "longitudeE7": -1221474074
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T16:57:13.361Z",
+ "endTimestamp": "2013-05-11T16:58:22.182Z"
+ },
+ "distance": 157,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374258384,
+ "lngE7": -1221472625
+ }, {
+ "latE7": 374253730,
+ "lngE7": -1221474227
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 118.24258724631441,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374257117,
+ "longitudeE7": -1221474391
+ },
+ "endLocation": {
+ "latitudeE7": 374231968,
+ "longitudeE7": -1221494844
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T16:58:22.182Z",
+ "endTimestamp": "2013-05-11T17:03:36.257Z"
+ },
+ "distance": 1434,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374258689,
+ "lngE7": -1221472167
+ }, {
+ "latE7": 374230918,
+ "lngE7": -1221491317
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 601.7848407199617,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374231968,
+ "longitudeE7": -1221494844
+ },
+ "endLocation": {
+ "latitudeE7": 374487700,
+ "longitudeE7": -1221761200
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T17:03:36.257Z",
+ "endTimestamp": "2013-05-11T17:15:08.247Z"
+ },
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374382526,
+ "lngE7": -1221580149,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-11T17:12:03.361Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3816.313320948182
+ }
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374497721,
+ "longitudeE7": -1221765152,
+ "placeId": "ChIJF57KY7Okj4ARTbdAyeyJbbw",
+ "address": "405 El Camino Real, Menlo Park, California 94025, United States",
+ "name": "The UPS Store",
+ "locationConfidence": 7.9764786
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T17:15:08.247Z",
+ "endTimestamp": "2013-05-11T17:47:12.159Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374487700,
+ "centerLngE7": -1221761200,
+ "visitConfidence": 69,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374505321,
+ "longitudeE7": -1221791572,
+ "placeId": "ChIJ33JzmLOkj4ARisZhlgHYIYE",
+ "address": "525 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "Safeway",
+ "locationConfidence": 7.236802
+ }, {
+ "latitudeE7": 374485005,
+ "longitudeE7": -1221747574,
+ "placeId": "ChIJGyJrzbSkj4ARACUm-OP1KxY",
+ "address": "241 El Camino Real #5236, Menlo Park, CA 94025, USA",
+ "name": "The Oasis Beer Garden",
+ "locationConfidence": 6.173527
+ }, {
+ "latitudeE7": 374499305,
+ "longitudeE7": -1221767784,
+ "placeId": "ChIJd83SZLOkj4ARHyhh95ctd0k",
+ "address": "433 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "Menlo Velo Bicycles",
+ "locationConfidence": 5.1893077
+ }, {
+ "latitudeE7": 374489724,
+ "longitudeE7": -1221753770,
+ "placeId": "ChIJBxU1uLSkj4ARs0sCns-2YbI",
+ "address": "301 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "Planet Auto Inc",
+ "locationConfidence": 4.1715937
+ }, {
+ "latitudeE7": 374519700,
+ "longitudeE7": -1221769357,
+ "placeId": "ChIJDWcc4LKkj4ARpSwFeCCXidg",
+ "address": "701 Laurel St, Menlo Park, CA 94025, USA",
+ "name": "Burgess Park",
+ "locationConfidence": 3.8282804
+ }, {
+ "latitudeE7": 374487806,
+ "longitudeE7": -1221750578,
+ "placeId": "ChIJQRiTybSkj4ARLMaennZMnF0",
+ "address": "275 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "76",
+ "locationConfidence": 3.6830883
+ }, {
+ "latitudeE7": 374495670,
+ "longitudeE7": -1221781730,
+ "placeId": "ChIJufxUv7Okj4ARlVIu8V2VYt4",
+ "address": "515 El Camino Real #100, Menlo Park, CA 94025, USA",
+ "name": "Peet\u0027s Coffee",
+ "locationConfidence": 3.6277
+ }, {
+ "latitudeE7": 374496540,
+ "longitudeE7": -1221782950,
+ "placeId": "ChIJufxUv7Okj4AR9_5v2USTvb0",
+ "address": "515 El Camino Real Suite 110, Menlo Park, CA 94025, USA",
+ "name": "Rubio\u0027s Coastal Grill",
+ "locationConfidence": 2.8963544
+ }, {
+ "latitudeE7": 374501183,
+ "longitudeE7": -1221770443,
+ "placeId": "ChIJtwXZdbOkj4ARJrUVcFBi0H4",
+ "address": "495 El Camino Real, Menlo Park, CA 94025, USA",
+ "name": "Shell",
+ "locationConfidence": 2.7770123
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 13,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374381907,
+ "longitudeE7": -1221582736
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 53.561028
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T17:53:28.791Z",
+ "endTimestamp": "2013-05-11T17:58:51.797Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374381942,
+ "lngE7": -1221582717
+ }, {
+ "latE7": 374334869,
+ "lngE7": -1221388702
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2180.8163145972144,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 53.561028
+ },
+ "duration": {
+ "startTimestamp": "2013-05-11T17:58:51.797Z",
+ "endTimestamp": "2013-05-12T09:03:46.323Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374337332,
+ "centerLngE7": -1221390165,
+ "visitConfidence": 36,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374329110,
+ "longitudeE7": -1221400640,
+ "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "First Baptist Church of Palo Alto",
+ "locationConfidence": 9.22152
+ }, {
+ "latitudeE7": 374262553,
+ "longitudeE7": -1221480252,
+ "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY",
+ "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA",
+ "name": "New Mozart School of Music",
+ "locationConfidence": 5.8220625
+ }, {
+ "latitudeE7": 374336640,
+ "longitudeE7": -1221385050,
+ "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE",
+ "address": "2205 Waverley St, Palo Alto, CA 94301, USA",
+ "name": "Alameda Investments Inc",
+ "locationConfidence": 4.4577494
+ }, {
+ "latitudeE7": 374328658,
+ "longitudeE7": -1221400533,
+ "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA",
+ "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA",
+ "name": "Peninsula Peace \u0026 Justice Center",
+ "locationConfidence": 4.200216
+ }, {
+ "latitudeE7": 374331995,
+ "longitudeE7": -1221400810,
+ "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA",
+ "address": "311 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Palo Alto Comm Child Care Pccc",
+ "locationConfidence": 3.4825382
+ }, {
+ "latitudeE7": 374328919,
+ "longitudeE7": -1221400171,
+ "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs",
+ "address": "305 N California Ave, Palo Alto, CA 94301, USA",
+ "name": "Macrobiotic Dinners",
+ "locationConfidence": 2.7169678
+ }, {
+ "latitudeE7": 374330635,
+ "longitudeE7": -1221391385,
+ "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M",
+ "name": "Ame Coaching",
+ "locationConfidence": 1.6239402
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.5385431
+ }, {
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.4803555
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 50,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 53.561028
+ },
+ "endLocation": {
+ "latitudeE7": 374346707,
+ "longitudeE7": -1221387953
+ },
+ "duration": {
+ "startTimestamp": "2013-05-12T09:03:46.323Z",
+ "endTimestamp": "2013-05-12T13:52:53.712Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374326248,
+ "lngE7": -1221390914
+ }, {
+ "latE7": 374348335,
+ "lngE7": -1221390609
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 322.9690021991538,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-12T13:52:53.712Z",
+ "endTimestamp": "2013-05-12T18:07:19.954Z"
+ },
+ "distance": 4357,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 373984051,
+ "longitudeE7": -1219751567,
+ "placeId": "ChIJq7iF28bJj4ARdWUD6DQUr3I",
+ "address": "4701 Great America Parkway, Santa Clara, California 95054, United States",
+ "name": "California\u0027s Great America",
+ "locationConfidence": 22.252901
+ },
+ "duration": {
+ "startTimestamp": "2013-05-12T18:11:49.770Z",
+ "endTimestamp": "2013-05-12T18:25:32.988Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 373948200,
+ "centerLngE7": -1219747850,
+ "visitConfidence": 74,
+ "otherCandidateLocations": [{
+ "latitudeE7": 373899455,
+ "longitudeE7": -1219740020,
+ "placeId": "ChIJZS4fLMLJj4ARRUt4ybRvZxk",
+ "address": "2700 Mission College Blvd, Santa Clara, CA 95054, USA",
+ "name": "Santa Clara Marriott",
+ "locationConfidence": 9.660756
+ }, {
+ "latitudeE7": 373952047,
+ "longitudeE7": -1219744159,
+ "placeId": "ChIJU_RvzmbJj4AR7M69vplT82c",
+ "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA",
+ "name": "Whitewater Falls",
+ "locationConfidence": 9.165366
+ }, {
+ "latitudeE7": 373935818,
+ "longitudeE7": -1219719714,
+ "placeId": "ChIJr4QAVsDJj4ARkTENSw4Oywg",
+ "address": "Mission College Blvd, Santa Clara, CA 95054, USA",
+ "name": "County Fair",
+ "locationConfidence": 5.2735786
+ }, {
+ "latitudeE7": 373957386,
+ "longitudeE7": -1219718967,
+ "placeId": "ChIJVxExp8DJj4ARp1MKDNlJH7c",
+ "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA",
+ "name": "Boomerang Bay",
+ "locationConfidence": 4.52043
+ }, {
+ "latitudeE7": 373958736,
+ "longitudeE7": -1219747521,
+ "placeId": "ChIJubgbscbJj4ARXWTpHol5FWY",
+ "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA",
+ "name": "Xtreme Skyflyer",
+ "locationConfidence": 4.398407
+ }, {
+ "latitudeE7": 373836462,
+ "longitudeE7": -1219826432,
+ "placeId": "ChIJ0-40YsHJj4ARCP7vTZ8Wrvk",
+ "address": "3000 Tannery Way, Santa Clara, CA 95054, USA",
+ "name": "Palo Alto Networks Inc",
+ "locationConfidence": 4.199742
+ }, {
+ "latitudeE7": 373955153,
+ "longitudeE7": -1219736776,
+ "placeId": "ChIJi00ZMsHJj4ARGdsP3za9NhM",
+ "locationConfidence": 3.9966197
+ }, {
+ "latitudeE7": 373948533,
+ "longitudeE7": -1219721943,
+ "placeId": "ChIJDQuOmsDJj4ARGlVd8LNzcRU",
+ "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA",
+ "name": "Planet Snoopy",
+ "locationConfidence": 3.0080788
+ }, {
+ "latitudeE7": 373973379,
+ "longitudeE7": -1219724860,
+ "placeId": "ChIJfXEcAMfJj4AR-BhNziCXycc",
+ "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA",
+ "name": "Orleans Place",
+ "locationConfidence": 2.9113894
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 25,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374007987,
+ "longitudeE7": -1219710494
+ },
+ "endLocation": {
+ "latitudeE7": 373956834,
+ "longitudeE7": -1219699640
+ },
+ "duration": {
+ "startTimestamp": "2013-05-12T18:27:56.655Z",
+ "endTimestamp": "2013-05-12T18:44:35.769Z"
+ },
+ "distance": 4444,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374006462,
+ "lngE7": -1219708786
+ }, {
+ "latE7": 374015197,
+ "lngE7": -1219681549
+ }, {
+ "latE7": 373956909,
+ "lngE7": -1219699630
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1993.7041370746258,
+ "travelMode": "WALK",
+ "confidence": 0.949118627322461
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374019470,
+ "lngE7": -1219675064,
+ "accuracyMeters": 40,
+ "timestamp": "2013-05-12T18:30:42.463Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 373956834,
+ "longitudeE7": -1219699640
+ },
+ "endLocation": {
+ "latitudeE7": 374276772,
+ "longitudeE7": -1221402018
+ },
+ "duration": {
+ "startTimestamp": "2013-05-12T18:44:35.769Z",
+ "endTimestamp": "2013-05-12T19:25:09.731Z"
+ },
+ "distance": 12046,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 373956565,
+ "lngE7": -1219699630
+ }, {
+ "latE7": 374276733,
+ "lngE7": -1221400909
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 21186.284091367557,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-13T14:37:41.462Z",
+ "endTimestamp": "2013-05-13T14:43:22.408Z"
+ },
+ "distance": 717,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277534,
+ "lngE7": -1221401748
+ }, {
+ "latE7": 374261627,
+ "lngE7": -1221486358
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1274.8286209232695,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-13T14:43:22.408Z",
+ "endTimestamp": "2013-05-13T16:10:37.703Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374261322,
+ "lngE7": -1221486587
+ }, {
+ "latE7": 374277305,
+ "lngE7": -1221402206
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1116.4415282573361,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85062
+ },
+ "duration": {
+ "startTimestamp": "2013-05-13T16:10:37.703Z",
+ "endTimestamp": "2013-05-14T14:43:03.783Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276379,
+ "centerLngE7": -1221402800,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.080436856
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.013714218
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0030492148
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0025922023
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002079509
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0017562815
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0016301202
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.00157448
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0014901427
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85062
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83373
+ },
+ "duration": {
+ "startTimestamp": "2013-05-14T14:43:03.783Z",
+ "endTimestamp": "2013-05-14T14:53:40.149Z"
+ },
+ "distance": 2879,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374217720,
+ "lngE7": -1221545944
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4599.051857075013,
+ "travelMode": "DRIVE",
+ "confidence": 0.997433301422488
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374216614,
+ "lngE7": -1221547470,
+ "accuracyMeters": 10,
+ "timestamp": "2013-05-14T14:47:52.821Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83373
+ },
+ "duration": {
+ "startTimestamp": "2013-05-14T14:53:40.149Z",
+ "endTimestamp": "2013-05-16T14:40:30.881Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276606,
+ "centerLngE7": -1221403046,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.08912129
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.015353769
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0035052963
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0027932709
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0022898293
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019566782
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0017946616
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0017903497
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0016769229
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83373
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85088
+ },
+ "duration": {
+ "startTimestamp": "2013-05-16T14:40:30.881Z",
+ "endTimestamp": "2013-05-16T14:52:10.663Z"
+ },
+ "distance": 3082,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374248504,
+ "lngE7": -1221452941
+ }, {
+ "latE7": 374273948,
+ "lngE7": -1221412124
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 299.714338384798,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374248466,
+ "lngE7": -1221452942,
+ "accuracyMeters": 15,
+ "timestamp": "2013-05-16T14:43:34.453Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85088
+ },
+ "duration": {
+ "startTimestamp": "2013-05-16T14:52:10.663Z",
+ "endTimestamp": "2013-05-17T14:38:11.095Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276432,
+ "centerLngE7": -1221402858,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.081854634
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.014562305
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0026563238
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0021550916
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.001858078
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.001688061
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016730934
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0015719468
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0013186962
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.840485
+ },
+ "duration": {
+ "startTimestamp": "2013-05-17T14:50:20.849Z",
+ "endTimestamp": "2013-05-17T23:57:22.894Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276378,
+ "centerLngE7": -1221402900,
+ "visitConfidence": 91,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.08417883
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.014862347
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0033403533
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0027020252
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0022007509
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0018951539
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0017227987
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0017164827
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0016092142
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83145
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T00:28:49.065Z",
+ "endTimestamp": "2013-05-18T17:55:48.241Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276239,
+ "centerLngE7": -1221403019,
+ "visitConfidence": 97,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.09109288
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.016722625
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002904554
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0024148065
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.002121007
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019550966
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018868037
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0018101264
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0015629197
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T17:55:48.241Z",
+ "endTimestamp": "2013-05-18T18:06:55.048Z"
+ },
+ "distance": 2832,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374344787,
+ "lngE7": -1221402816
+ }, {
+ "latE7": 374193572,
+ "lngE7": -1221347427
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1403.1133553496697,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374341507,
+ "lngE7": -1221404266,
+ "accuracyMeters": 44,
+ "timestamp": "2013-05-18T17:57:56.122Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T18:13:58.104Z",
+ "endTimestamp": "2013-05-18T18:16:59.197Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374193954,
+ "lngE7": -1221347122
+ }, {
+ "latE7": 374274940,
+ "lngE7": -1221398162
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1331.0211495930375,
+ "travelMode": "WALK",
+ "confidence": 0.2625832986615732
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.879036
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T18:16:59.197Z",
+ "endTimestamp": "2013-05-18T18:49:26.198Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276304,
+ "centerLngE7": -1221402731,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.055390038
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.00477415
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0041358145
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002585689
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002091494
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.001637253
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0015396782
+ }, {
+ "latitudeE7": 374281042,
+ "longitudeE7": -1221413747,
+ "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE",
+ "address": "150 Grant Ave F, Palo Alto, CA 94306, USA",
+ "name": "Loy D. Martin Furniture",
+ "locationConfidence": 0.0014463083
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0013342035
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.879036
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84637
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T18:49:26.198Z",
+ "endTimestamp": "2013-05-18T19:06:58.548Z"
+ },
+ "distance": 4183,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374257926,
+ "lngE7": -1221497116
+ }, {
+ "latE7": 374191398,
+ "lngE7": -1221602020
+ }, {
+ "latE7": 374223213,
+ "lngE7": -1221508560
+ }, {
+ "latE7": 374277420,
+ "lngE7": -1221401290
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7349.591316594279,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374257927,
+ "lngE7": -1221497116,
+ "accuracyMeters": 29,
+ "timestamp": "2013-05-18T18:54:27.792Z"
+ }, {
+ "latE7": 374191208,
+ "lngE7": -1221602020,
+ "accuracyMeters": 26,
+ "timestamp": "2013-05-18T18:58:53.453Z"
+ }, {
+ "latE7": 374224434,
+ "lngE7": -1221511154,
+ "accuracyMeters": 87,
+ "timestamp": "2013-05-18T19:02:58.409Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.84637
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T19:06:58.548Z",
+ "endTimestamp": "2013-05-18T21:48:32.306Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276373,
+ "centerLngE7": -1221403018,
+ "visitConfidence": 83,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.090702996
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0053182445
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0028292553
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0023263555
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019881763
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0018308341
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018181703
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0017077732
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0014124921
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T21:48:32.306Z",
+ "endTimestamp": "2013-05-18T21:54:51.137Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374265632,
+ "lngE7": -1221431884
+ }, {
+ "latE7": 374191436,
+ "lngE7": -1221601104
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2913.412686076353,
+ "travelMode": "DRIVE",
+ "confidence": 0.9417166772901809
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374266815,
+ "lngE7": -1221434174,
+ "accuracyMeters": 52,
+ "timestamp": "2013-05-18T21:50:10.405Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T22:05:51.318Z",
+ "endTimestamp": "2013-05-18T22:17:48.551Z"
+ },
+ "distance": 5479,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374191436,
+ "lngE7": -1221601104
+ }, {
+ "latE7": 374253540,
+ "lngE7": -1221512374
+ }, {
+ "latE7": 374017601,
+ "lngE7": -1221123733
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 6662.56685650875,
+ "travelMode": "DRIVE",
+ "confidence": 0.8558625096376219
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374255180,
+ "lngE7": -1221515427,
+ "accuracyMeters": 57,
+ "timestamp": "2013-05-18T22:07:48.829Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374017565,
+ "longitudeE7": -1221118174,
+ "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc",
+ "address": "645 San Antonio Road, Mountain View, California 94040, United States",
+ "name": "Safeway",
+ "locationConfidence": 46.756645,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T22:17:48.551Z",
+ "endTimestamp": "2013-05-18T22:40:46.472Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374017208,
+ "centerLngE7": -1221120569,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 7.8241906
+ }, {
+ "latitudeE7": 374020870,
+ "longitudeE7": -1221107610,
+ "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM",
+ "address": "590 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Trader Joe\u0027s",
+ "locationConfidence": 6.7132154
+ }, {
+ "latitudeE7": 374009260,
+ "longitudeE7": -1221121840,
+ "placeId": "ChIJyS7o4Zuwj4ARon29W1GsXJo",
+ "address": "2580 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "The Counter Mountain View",
+ "locationConfidence": 4.0742373
+ }, {
+ "latitudeE7": 374009978,
+ "longitudeE7": -1221095964,
+ "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ",
+ "address": "600 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Walmart",
+ "locationConfidence": 3.4990535
+ }, {
+ "latitudeE7": 374027620,
+ "longitudeE7": -1221122274,
+ "placeId": "ChIJ-0gSHZywj4ARQGh008-HoLA",
+ "address": "565 San Antonio Rd #26, Mountain View, CA 94040, USA",
+ "name": "Veggie Grill",
+ "locationConfidence": 3.1027398
+ }, {
+ "latitudeE7": 374017924,
+ "longitudeE7": -1221120685,
+ "placeId": "ChIJVykNVJmwj4ARnKMt_r3o31Q",
+ "address": "645 San Antonio Rd, Mountain View, CA 94039, USA",
+ "name": "U.S. Bank Branch",
+ "locationConfidence": 2.4543185,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374018014,
+ "longitudeE7": -1221117757,
+ "placeId": "ChIJKfoIrJ-wj4ARrfQpjCBFyaI",
+ "address": "645 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Safeway Pharmacy",
+ "locationConfidence": 2.067627,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374016175,
+ "longitudeE7": -1221129674,
+ "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA",
+ "address": "685 San Antonio Rd Suite 19, Mountain View, CA 94040, USA",
+ "name": "Jared",
+ "locationConfidence": 1.8255533
+ }, {
+ "latitudeE7": 374010476,
+ "longitudeE7": -1221109462,
+ "placeId": "ChIJ8ZTVZJmwj4ARQFv0RXspg3A",
+ "address": "2560 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "Chili\u0027s Grill \u0026 Bar",
+ "locationConfidence": 1.5816091
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 45,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374017565,
+ "longitudeE7": -1221118174,
+ "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc",
+ "address": "645 San Antonio Road, Mountain View, California 94040, United States",
+ "name": "Safeway",
+ "locationConfidence": 46.756645,
+ "isCurrentLocation": true
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86496
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T22:40:46.472Z",
+ "endTimestamp": "2013-05-18T22:51:20.577Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374019050,
+ "lngE7": -1221122589
+ }, {
+ "latE7": 374280166,
+ "lngE7": -1221404495
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4783.311741938092,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86496
+ },
+ "duration": {
+ "startTimestamp": "2013-05-18T22:51:20.577Z",
+ "endTimestamp": "2013-05-20T14:41:29.356Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276328,
+ "centerLngE7": -1221402824,
+ "visitConfidence": 99,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.080255754
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.005050674
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.00265585
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0021593894
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0018887229
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016929326
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0016919395
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0015878107
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0013619774
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T14:41:29.356Z",
+ "endTimestamp": "2013-05-20T15:06:16.500Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278182,
+ "lngE7": -1221402435
+ }, {
+ "latE7": 374260330,
+ "lngE7": -1221436309
+ }, {
+ "latE7": 374213104,
+ "lngE7": -1221545715
+ }, {
+ "latE7": 374336547,
+ "lngE7": -1221557922
+ }, {
+ "latE7": 374439163,
+ "lngE7": -1221647338
+ }, {
+ "latE7": 374855461,
+ "lngE7": -1221495666
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 9665.730342837845,
+ "travelMode": "DRIVE",
+ "confidence": 0.997268575576259
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374259796,
+ "lngE7": -1221433945,
+ "accuracyMeters": 64,
+ "timestamp": "2013-05-20T14:42:33.458Z"
+ }, {
+ "latE7": 374215431,
+ "lngE7": -1221550140,
+ "accuracyMeters": 61,
+ "timestamp": "2013-05-20T14:46:26.148Z"
+ }, {
+ "latE7": 374337540,
+ "lngE7": -1221556396,
+ "accuracyMeters": 42,
+ "timestamp": "2013-05-20T14:51:38.554Z"
+ }, {
+ "latE7": 374440193,
+ "lngE7": -1221644211,
+ "accuracyMeters": 20,
+ "timestamp": "2013-05-20T14:54:37.371Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T15:06:16.500Z",
+ "endTimestamp": "2013-05-20T15:14:23.971Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374854354,
+ "lngE7": -1221496963
+ }, {
+ "latE7": 374851760,
+ "lngE7": -1221495971
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 84.89175190604107,
+ "travelMode": "WALK",
+ "confidence": 0.5711708164602445
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 88.99889
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T15:14:23.971Z",
+ "endTimestamp": "2013-05-20T16:11:41.995Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374854156,
+ "centerLngE7": -1221484227,
+ "visitConfidence": 64,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 6.850942
+ }, {
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 2.3814566
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 1.7047024
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.04788646
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.008943192
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k",
+ "locationConfidence": 0.007179077
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374851330,
+ "lngE7": -1221496432,
+ "accuracyMeters": 61,
+ "timestamp": "2013-05-20T15:16:37.102Z"
+ }, {
+ "latE7": 374854101,
+ "lngE7": -1221481765,
+ "accuracyMeters": 25,
+ "timestamp": "2013-05-20T15:54:36.214Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T15:55:36.248Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T15:58:36.329Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T16:01:36.299Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T16:03:36.325Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T16:05:38.492Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T16:07:38.692Z"
+ }, {
+ "latE7": 374845643,
+ "lngE7": -1221481529,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-20T16:09:38.833Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1583.0679042289785
+ },
+ "locationConfidence": 79,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 88.99889
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82275
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T16:11:41.995Z",
+ "endTimestamp": "2013-05-20T16:30:45.206Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374840927,
+ "lngE7": -1221477890
+ }, {
+ "latE7": 374856376,
+ "lngE7": -1221494293
+ }, {
+ "latE7": 374447174,
+ "lngE7": -1221648635
+ }, {
+ "latE7": 374277915,
+ "lngE7": -1221402282
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 9752.614896365683,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374854889,
+ "lngE7": -1221496353,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-20T16:11:41.995Z"
+ }, {
+ "latE7": 374448204,
+ "lngE7": -1221647644,
+ "accuracyMeters": 28,
+ "timestamp": "2013-05-20T16:25:01.007Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82275
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T16:30:45.206Z",
+ "endTimestamp": "2013-05-20T23:34:50.283Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276517,
+ "centerLngE7": -1221403160,
+ "visitConfidence": 89,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.098387025
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.015490911
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0036423688
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0029345958
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0024107322
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019800286
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018812225
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0018567012
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.00173715
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82275
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83119
+ },
+ "duration": {
+ "startTimestamp": "2013-05-20T23:34:50.283Z",
+ "endTimestamp": "2013-05-21T00:06:37.463Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374276199,
+ "lngE7": -1221400909
+ }, {
+ "latE7": 374256782,
+ "lngE7": -1221439208
+ }, {
+ "latE7": 374386291,
+ "lngE7": -1221596832
+ }, {
+ "latE7": 374208755,
+ "lngE7": -1221572036
+ }, {
+ "latE7": 374215812,
+ "lngE7": -1221494598
+ }, {
+ "latE7": 374283332,
+ "lngE7": -1221429824
+ }, {
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 6039.170238661459,
+ "travelMode": "DRIVE",
+ "confidence": 0.8897991584966768
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374256935,
+ "lngE7": -1221439514,
+ "accuracyMeters": 34,
+ "timestamp": "2013-05-20T23:38:00.716Z"
+ }, {
+ "latE7": 374382706,
+ "lngE7": -1221595078,
+ "accuracyMeters": 43,
+ "timestamp": "2013-05-20T23:49:15.215Z"
+ }, {
+ "latE7": 374211655,
+ "lngE7": -1221569824,
+ "accuracyMeters": 61,
+ "timestamp": "2013-05-20T23:56:09.352Z"
+ }, {
+ "latE7": 374216118,
+ "lngE7": -1221494370,
+ "accuracyMeters": 29,
+ "timestamp": "2013-05-21T00:00:42.538Z"
+ }, {
+ "latE7": 374283447,
+ "lngE7": -1221429749,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-21T00:04:37.469Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83119
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T00:06:37.463Z",
+ "endTimestamp": "2013-05-21T14:39:27.896Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276219,
+ "centerLngE7": -1221403029,
+ "visitConfidence": 95,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.09159616
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.016957428
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002926498
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002438668
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0021492941
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019839047
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0019051788
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0018341491
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0015892342
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.83119
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86282
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T14:39:27.896Z",
+ "endTimestamp": "2013-05-21T14:51:55.435Z"
+ },
+ "distance": 3117,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278144,
+ "lngE7": -1221402435
+ }, {
+ "latE7": 374255256,
+ "lngE7": -1221440505
+ }, {
+ "latE7": 374217720,
+ "lngE7": -1221545944
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4611.4865342733465,
+ "travelMode": "DRIVE",
+ "confidence": 0.9985111103700887
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374255714,
+ "lngE7": -1221441345,
+ "accuracyMeters": 24,
+ "timestamp": "2013-05-21T14:42:26.962Z"
+ }, {
+ "latE7": 374219055,
+ "lngE7": -1221547699,
+ "accuracyMeters": 42,
+ "timestamp": "2013-05-21T14:45:36.131Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86282
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T14:51:55.435Z",
+ "endTimestamp": "2013-05-21T21:58:15.901Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276506,
+ "centerLngE7": -1221402665,
+ "visitConfidence": 89,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.07212305
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.012973074
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.002787371
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0024638823
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.001949585
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0016642048
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0015319937
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0014495195
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0013891482
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T22:04:36.905Z",
+ "endTimestamp": "2013-05-21T22:10:51.900Z"
+ },
+ "distance": 3819,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374043693,
+ "lngE7": -1221095809
+ }, {
+ "latE7": 374044761,
+ "lngE7": -1221097564
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 75.20303612492253,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T22:10:51.900Z",
+ "endTimestamp": "2013-05-21T22:24:48.195Z"
+ },
+ "distance": 4936,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374044761,
+ "lngE7": -1221097564
+ }, {
+ "latE7": 374245033,
+ "lngE7": -1221519470
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5493.181827578896,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T22:24:48.195Z",
+ "endTimestamp": "2013-05-21T22:32:17.155Z"
+ },
+ "distance": 895,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374245223,
+ "lngE7": -1221519851
+ }, {
+ "latE7": 374207839,
+ "lngE7": -1221577148
+ }, {
+ "latE7": 374205856,
+ "lngE7": -1221562728
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 647.5769022868609,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374206085,
+ "lngE7": -1221573715,
+ "accuracyMeters": 65,
+ "timestamp": "2013-05-21T22:26:49.343Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T22:32:17.155Z",
+ "endTimestamp": "2013-05-21T22:37:18.264Z"
+ },
+ "distance": 939,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374205856,
+ "lngE7": -1221562728
+ }, {
+ "latE7": 374243507,
+ "lngE7": -1221464462
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1321.2706196456288,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.834114
+ },
+ "duration": {
+ "startTimestamp": "2013-05-21T22:38:18.286Z",
+ "endTimestamp": "2013-05-22T14:39:30.500Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276387,
+ "centerLngE7": -1221402989,
+ "visitConfidence": 96,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.089019544
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.015319738
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0034967004
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0027900494
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0022863054
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.001952566
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0017904722
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0017876461
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0016734209
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T14:39:30.500Z",
+ "endTimestamp": "2013-05-22T14:42:31.652Z"
+ },
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277458,
+ "lngE7": -1221402359
+ }, {
+ "latE7": 374259414,
+ "lngE7": -1221433792
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 584.7842972813867,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T14:42:31.652Z",
+ "endTimestamp": "2013-05-22T14:51:15.746Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374259109,
+ "lngE7": -1221434097
+ }, {
+ "latE7": 374217720,
+ "lngE7": -1221545944
+ }, {
+ "latE7": 374277725,
+ "lngE7": -1221402053
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 618.2494409551443,
+ "travelMode": "DRIVE",
+ "confidence": 0.6526369637583175
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374219017,
+ "lngE7": -1221547470,
+ "accuracyMeters": 42,
+ "timestamp": "2013-05-22T14:46:12.217Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.79704
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T14:51:15.746Z",
+ "endTimestamp": "2013-05-22T23:44:24.719Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276273,
+ "centerLngE7": -1221403329,
+ "visitConfidence": 90,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.10877016
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.018584108
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.004497783
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0032499232
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0027594396
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.002354127
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0022662547
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0021475882
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0020757695
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T23:44:29.336Z",
+ "endTimestamp": "2013-05-22T23:50:24.832Z"
+ },
+ "distance": 1718,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374280357,
+ "lngE7": -1221404724
+ }, {
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2506.4490383424536,
+ "travelMode": "DRIVE",
+ "confidence": 0.026858270521261957
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T23:50:24.832Z",
+ "endTimestamp": "2013-05-22T23:57:41.323Z"
+ },
+ "distance": 374,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }, {
+ "latE7": 374218788,
+ "lngE7": -1221539535
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 333.7863187465882,
+ "travelMode": "WALK",
+ "confidence": 0.9637769153990615
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-22T23:57:41.323Z",
+ "endTimestamp": "2013-05-23T00:03:45.880Z"
+ },
+ "distance": 1455,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374219093,
+ "lngE7": -1221539306
+ }, {
+ "latE7": 374279899,
+ "lngE7": -1221404037
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1931.4221027625238,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.79068
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T00:03:45.880Z",
+ "endTimestamp": "2013-05-23T00:57:27.597Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276651,
+ "centerLngE7": -1221403244,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.10155882
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.031210849
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0030080588
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0024595142
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0020621673
+ }, {
+ "latitudeE7": 374263768,
+ "longitudeE7": -1221409840,
+ "placeId": "ChIJxeGx_O-6j4ARgUDRP35nyME",
+ "address": "260 Sheridan Ave b40, Palo Alto, CA 94306, USA",
+ "name": "Sports Medicine Institute",
+ "locationConfidence": 0.0019019146
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0018491353
+ }, {
+ "latitudeE7": 374280769,
+ "longitudeE7": -1221427801,
+ "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4",
+ "address": "2450 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Palo Alto Pizza Co.",
+ "locationConfidence": 0.001766966
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0017396233
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.79068
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 62.965015
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T00:57:27.597Z",
+ "endTimestamp": "2013-05-23T01:03:35.723Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374297828,
+ "lngE7": -1221476135
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 925.2295660513997,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 62.965015
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T01:03:35.723Z",
+ "endTimestamp": "2013-05-23T03:56:57.626Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374298905,
+ "centerLngE7": -1221477376,
+ "visitConfidence": 82,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, CA 94305, USA",
+ "name": "Stanford University",
+ "locationConfidence": 18.96839
+ }, {
+ "latitudeE7": 374299808,
+ "longitudeE7": -1221478051,
+ "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow",
+ "address": "314 Stanford Ave, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 13.133416
+ }, {
+ "latitudeE7": 374315145,
+ "longitudeE7": -1221476461,
+ "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws",
+ "address": "1899 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Peers Park",
+ "locationConfidence": 1.4729432
+ }, {
+ "latitudeE7": 374285368,
+ "longitudeE7": -1221497407,
+ "placeId": "ChIJaWnuL-e6j4ARR6YIY348nZk",
+ "address": "1921 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Sundance The Steakhouse",
+ "locationConfidence": 0.7341276
+ }, {
+ "latitudeE7": 374295943,
+ "longitudeE7": -1221480602,
+ "placeId": "ChIJNxYJM-G6j4ARagKLTE6n2a4",
+ "address": "340 Stanford Ave, Palo Alto, CA 94306, USA",
+ "name": "Thumbling Child Care Inc",
+ "locationConfidence": 0.32023284
+ }, {
+ "latitudeE7": 374281404,
+ "longitudeE7": -1221492644,
+ "placeId": "ChIJC-K_Iee6j4ARw_Rt2wDSRrE",
+ "address": "1963 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Valero",
+ "locationConfidence": 0.2617381
+ }, {
+ "latitudeE7": 374303079,
+ "longitudeE7": -1221481640,
+ "placeId": "ChIJjWmeO-G6j4ARNJn892FdWbk",
+ "name": "Erber Cheryl",
+ "locationConfidence": 0.23044722
+ }, {
+ "latitudeE7": 374230207,
+ "longitudeE7": -1221554832,
+ "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8",
+ "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA",
+ "name": "Escondido Village Housing Front Desk",
+ "locationConfidence": 0.17400111
+ }, {
+ "latitudeE7": 374273583,
+ "longitudeE7": -1221491990,
+ "placeId": "ChIJsUowmuW6j4ARncdA5qucqUk",
+ "address": "2000 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Starbucks",
+ "locationConfidence": 0.12068936
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 58,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 62.965015
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.78906
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T03:56:57.626Z",
+ "endTimestamp": "2013-05-23T04:01:57.786Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374298057,
+ "lngE7": -1221475448
+ }, {
+ "latE7": 374277534,
+ "lngE7": -1221401824
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1169.1546401775158,
+ "travelMode": "DRIVE",
+ "confidence": 0.9794783966890662
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.78906
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T04:01:57.786Z",
+ "endTimestamp": "2013-05-23T14:44:38.576Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276233,
+ "centerLngE7": -1221403575,
+ "visitConfidence": 93,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.1187691
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.020052766
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0034543455
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0029981702
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0025458199
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0025339092
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0023265823
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0022858775
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y",
+ "address": "2625 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Intertec",
+ "locationConfidence": 0.0019302227
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.78906
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.80934
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T14:44:38.576Z",
+ "endTimestamp": "2013-05-23T14:56:08.813Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278182,
+ "lngE7": -1221402435
+ }, {
+ "latE7": 374212417,
+ "lngE7": -1221546325
+ }, {
+ "latE7": 374268989,
+ "lngE7": -1221443557
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4795.361365357203,
+ "travelMode": "DRIVE",
+ "confidence": 0.9983692383829968
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374215279,
+ "lngE7": -1221553040,
+ "accuracyMeters": 73,
+ "timestamp": "2013-05-23T14:48:53.481Z"
+ }, {
+ "latE7": 374266815,
+ "lngE7": -1221446075,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-23T14:52:58.582Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.80934
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T14:56:08.813Z",
+ "endTimestamp": "2013-05-23T23:37:13.739Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276342,
+ "centerLngE7": -1221403232,
+ "visitConfidence": 91,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.10301391
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.017288063
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.004115494
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0030939635
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0025931057
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0021962267
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0020845048
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0020207537
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0019243424
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T23:37:13.739Z",
+ "endTimestamp": "2013-05-23T23:42:05.065Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278182,
+ "lngE7": -1221402435
+ }, {
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2470.3745758178757,
+ "travelMode": "DRIVE",
+ "confidence": 0.9729650771489
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T23:42:05.065Z",
+ "endTimestamp": "2013-05-23T23:47:49.400Z"
+ },
+ "distance": 370,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }, {
+ "latE7": 374205703,
+ "lngE7": -1221572952
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1090.76005052902,
+ "travelMode": "WALK",
+ "confidence": 0.9856247098377584
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374206085,
+ "lngE7": -1221573715,
+ "accuracyMeters": 65,
+ "timestamp": "2013-05-23T23:44:08.661Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T23:50:57.392Z",
+ "endTimestamp": "2013-05-23T23:55:08.082Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }, {
+ "latE7": 374288482,
+ "lngE7": -1221435623
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1829.218364803767,
+ "travelMode": "WALK",
+ "confidence": 0.9910021315896839
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374288751,
+ "longitudeE7": -1221434036,
+ "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg",
+ "address": "164 California Ave, Palo Alto, California 94306-1621, United States",
+ "name": "Mollie Stone\u0027s Markets",
+ "locationConfidence": 28.070776
+ },
+ "duration": {
+ "startTimestamp": "2013-05-23T23:55:08.082Z",
+ "endTimestamp": "2013-05-24T00:07:16.556Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374289433,
+ "centerLngE7": -1221436267,
+ "visitConfidence": 71,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "locationConfidence": 27.528145
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 6.6051016
+ }, {
+ "latitudeE7": 374286799,
+ "longitudeE7": -1221439837,
+ "placeId": "ChIJAeqIUeS6j4AR-Lw1JcwcXkQ",
+ "address": "265 Cambridge Ave, Palo Alto, CA 94306, USA",
+ "name": "United States Postal Service",
+ "locationConfidence": 5.388428
+ }, {
+ "latitudeE7": 374291461,
+ "longitudeE7": -1221441481,
+ "placeId": "ChIJp1VHW-S6j4ARaYLteG5hAXg",
+ "address": "240B Cambridge Ave, Palo Alto, CA 94306, USA",
+ "name": "Domino\u0027s Pizza",
+ "locationConfidence": 2.6288326
+ }, {
+ "latitudeE7": 374278502,
+ "longitudeE7": -1221431950,
+ "placeId": "ChIJdTbWp-W6j4ARKbrpGRZUp38",
+ "address": "249 California Ave, Palo Alto, CA 94306, USA",
+ "name": "FedEx Office Print \u0026 Ship Center",
+ "locationConfidence": 1.1529622
+ }, {
+ "latitudeE7": 374285618,
+ "longitudeE7": -1221434178,
+ "placeId": "ChIJZfNVkDm7j4ARVW4mpMwvRcw",
+ "address": "200 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Stript Wax Bar",
+ "locationConfidence": 1.1499649
+ }, {
+ "latitudeE7": 374287816,
+ "longitudeE7": -1221430635,
+ "placeId": "ChIJf6-g_eS6j4AR6b6h8wK_1XY",
+ "locationConfidence": 1.1184324
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.1031797
+ }, {
+ "latitudeE7": 374291316,
+ "longitudeE7": -1221440292,
+ "placeId": "ChIJp1VHW-S6j4ARz4wFafxdGOw",
+ "address": "240 Cambridge Ave, Palo Alto, CA 94306, USA",
+ "name": "Maximart Pharmacy",
+ "locationConfidence": 1.0195507
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 30,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374288751,
+ "longitudeE7": -1221434036,
+ "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg",
+ "address": "164 California Ave, Palo Alto, California 94306-1621, United States",
+ "name": "Mollie Stone\u0027s Markets",
+ "locationConfidence": 28.070776
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.80416
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T00:07:16.556Z",
+ "endTimestamp": "2013-05-24T00:09:19.277Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374289169,
+ "lngE7": -1221441040
+ }, {
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 490.29421477173287,
+ "travelMode": "WALK",
+ "confidence": 0.9993020108330583
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.80416
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T00:09:19.277Z",
+ "endTimestamp": "2013-05-24T14:02:59.475Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276387,
+ "centerLngE7": -1221403368,
+ "visitConfidence": 95,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.11160183
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.017928794
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0032509854
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0027433557
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.00227903
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0022033304
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0021341597
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0020288932
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y",
+ "address": "2625 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Intertec",
+ "locationConfidence": 0.0016706348
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.80416
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 66.293594
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T14:02:59.475Z",
+ "endTimestamp": "2013-05-24T14:08:54.393Z"
+ },
+ "distance": 759,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374290771,
+ "lngE7": -1221429443
+ }, {
+ "latE7": 374297676,
+ "lngE7": -1221475753
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1614.7510124697403,
+ "travelMode": "DRIVE",
+ "confidence": 0.6936124585792413
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374291801,
+ "lngE7": -1221428375,
+ "accuracyMeters": 83,
+ "timestamp": "2013-05-24T14:05:02.430Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 66.293594
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T14:08:54.393Z",
+ "endTimestamp": "2013-05-24T14:29:14.561Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374298814,
+ "centerLngE7": -1221477500,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, CA 94305, USA",
+ "name": "Stanford University",
+ "locationConfidence": 18.715889
+ }, {
+ "latitudeE7": 374299808,
+ "longitudeE7": -1221478051,
+ "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow",
+ "address": "314 Stanford Ave, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 10.136492
+ }, {
+ "latitudeE7": 374315145,
+ "longitudeE7": -1221476461,
+ "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws",
+ "address": "1899 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Peers Park",
+ "locationConfidence": 1.5265421
+ }, {
+ "latitudeE7": 374295943,
+ "longitudeE7": -1221480602,
+ "placeId": "ChIJNxYJM-G6j4ARagKLTE6n2a4",
+ "address": "340 Stanford Ave, Palo Alto, CA 94306, USA",
+ "name": "Thumbling Child Care Inc",
+ "locationConfidence": 0.35303804
+ }, {
+ "latitudeE7": 374281404,
+ "longitudeE7": -1221492644,
+ "placeId": "ChIJC-K_Iee6j4ARw_Rt2wDSRrE",
+ "address": "1963 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Valero",
+ "locationConfidence": 0.28011853
+ }, {
+ "latitudeE7": 374285368,
+ "longitudeE7": -1221497407,
+ "placeId": "ChIJaWnuL-e6j4ARR6YIY348nZk",
+ "address": "1921 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Sundance The Steakhouse",
+ "locationConfidence": 0.2470812
+ }, {
+ "latitudeE7": 374303079,
+ "longitudeE7": -1221481640,
+ "placeId": "ChIJjWmeO-G6j4ARNJn892FdWbk",
+ "name": "Erber Cheryl",
+ "locationConfidence": 0.22168705
+ }, {
+ "latitudeE7": 374230207,
+ "longitudeE7": -1221554832,
+ "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8",
+ "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA",
+ "name": "Escondido Village Housing Front Desk",
+ "locationConfidence": 0.18389148
+ }, {
+ "latitudeE7": 374287594,
+ "longitudeE7": -1221479714,
+ "placeId": "ChIJwTPcxea6j4AROh50iytBbDo",
+ "address": "Palo Alto, CA 94306, USA",
+ "name": "Free Will Baptist Church",
+ "locationConfidence": 0.12978509
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 61,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 66.293594
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82425
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T14:29:14.561Z",
+ "endTimestamp": "2013-05-24T14:33:15.539Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374298133,
+ "lngE7": -1221475906
+ }, {
+ "latE7": 374277114,
+ "lngE7": -1221401519
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 938.557169447318,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82425
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T14:33:15.539Z",
+ "endTimestamp": "2013-05-24T23:01:47.501Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276483,
+ "centerLngE7": -1221403121,
+ "visitConfidence": 91,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.096072786
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.015464975
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0036123898
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002899212
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002381243
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.001975077
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018590086
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0018429972
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0017232614
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T23:01:47.501Z",
+ "endTimestamp": "2013-05-24T23:12:33.251Z"
+ },
+ "distance": 910,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T23:12:33.251Z",
+ "endTimestamp": "2013-05-24T23:14:12.007Z"
+ },
+ "distance": 139,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T23:18:12.260Z",
+ "endTimestamp": "2013-05-24T23:29:33.282Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374193878,
+ "lngE7": -1221347045
+ }, {
+ "latE7": 374144554,
+ "lngE7": -1221386566
+ }, {
+ "latE7": 374221954,
+ "lngE7": -1221538009
+ }, {
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2557.854569872437,
+ "travelMode": "WALK",
+ "confidence": 0.9173052471643102
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374147224,
+ "lngE7": -1221383514,
+ "accuracyMeters": 81,
+ "timestamp": "2013-05-24T23:22:14.317Z"
+ }, {
+ "latE7": 374222221,
+ "lngE7": -1221538467,
+ "accuracyMeters": 9,
+ "timestamp": "2013-05-24T23:25:45.310Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374215229,
+ "longitudeE7": -1221553109,
+ "placeId": "ChIJd-GjbMO6j4ARf0oitoQXD0w",
+ "address": "890 Escondido Road, Stanford, California 94305-7101, United States",
+ "name": "Escondido Elementary School",
+ "locationConfidence": 76.72076
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T23:29:33.282Z",
+ "endTimestamp": "2013-05-24T23:51:20.094Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374215231,
+ "centerLngE7": -1221558215,
+ "visitConfidence": 54,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, CA 94305, USA",
+ "name": "Stanford University",
+ "locationConfidence": 20.799835
+ }, {
+ "latitudeE7": 374217080,
+ "longitudeE7": -1221581384,
+ "placeId": "ChIJgyF0Stu6j4ARSwBXxWMCRL0",
+ "address": "203 Rosse Ln, Stanford, CA 94305, USA",
+ "name": "Rains Apartments",
+ "locationConfidence": 0.5509121
+ }, {
+ "latitudeE7": 374221560,
+ "longitudeE7": -1221563333,
+ "placeId": "ChIJm3O0J8O6j4ARYisOVyVtoYA",
+ "address": "Bing Nursery School, Bing Nursery School, 850 Escondido Rd, Stanford, CA 94305, USA",
+ "name": "Bing Nursery School",
+ "locationConfidence": 0.4643881
+ }, {
+ "latitudeE7": 374201381,
+ "longitudeE7": -1221566605,
+ "placeId": "ChIJ_zoqccO6j4ARWK3U5D1796M",
+ "address": "875 Bowdoin Ln, Stanford, CA 94305, USA",
+ "name": "Stanford Campus Recreation Association",
+ "locationConfidence": 0.3074773
+ }, {
+ "latitudeE7": 374279660,
+ "longitudeE7": -1221544500,
+ "placeId": "ChIJRddofN66j4ARwWU2TJEnplc",
+ "address": "88 Hulme Ct, Stanford, CA 94305, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.25104612
+ }, {
+ "latitudeE7": 374230207,
+ "longitudeE7": -1221554832,
+ "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8",
+ "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA",
+ "name": "Escondido Village Housing Front Desk",
+ "locationConfidence": 0.2306935
+ }, {
+ "latitudeE7": 374215229,
+ "longitudeE7": -1221553109,
+ "placeId": "ChIJhxSmP8O6j4ARBLlBRlz7uCY",
+ "address": "890 Escondido Rd, Stanford, CA 94305, USA",
+ "name": "Escondido Kids\u0027 Club",
+ "locationConfidence": 0.16402376,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374226633,
+ "longitudeE7": -1221586215,
+ "placeId": "ChIJZxYlQtu6j4ARvPw6atsEFfM",
+ "locationConfidence": 0.15087727
+ }, {
+ "latitudeE7": 374229730,
+ "longitudeE7": -1221554090,
+ "placeId": "ChIJg-u10dy6j4ARgTiB2Fsuemo",
+ "address": "Stanford, CA 94305, USA",
+ "name": "Escondido Village Administration Center",
+ "locationConfidence": 0.12294385
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374207217,
+ "lngE7": -1221554228,
+ "accuracyMeters": 42,
+ "timestamp": "2013-05-24T23:29:33.282Z"
+ }, {
+ "latE7": 374212092,
+ "lngE7": -1221570272,
+ "accuracyMeters": 25,
+ "timestamp": "2013-05-24T23:32:02.060Z"
+ }, {
+ "latE7": 374215581,
+ "lngE7": -1221558072,
+ "accuracyMeters": 35,
+ "timestamp": "2013-05-24T23:37:47.258Z"
+ }, {
+ "latE7": 374222371,
+ "lngE7": -1221557094,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-24T23:39:46.485Z"
+ }, {
+ "latE7": 374222371,
+ "lngE7": -1221557094,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-24T23:42:47.975Z"
+ }, {
+ "latE7": 374222371,
+ "lngE7": -1221557094,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-24T23:45:54.020Z"
+ }, {
+ "latE7": 374209723,
+ "lngE7": -1221561475,
+ "accuracyMeters": 57,
+ "timestamp": "2013-05-24T23:48:20.051Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 905.0356681250091
+ },
+ "locationConfidence": 69,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374215229,
+ "longitudeE7": -1221553109,
+ "placeId": "ChIJd-GjbMO6j4ARf0oitoQXD0w",
+ "address": "890 Escondido Road, Stanford, California 94305-7101, United States",
+ "name": "Escondido Elementary School",
+ "locationConfidence": 76.72076
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 47.651962
+ },
+ "duration": {
+ "startTimestamp": "2013-05-24T23:51:20.094Z",
+ "endTimestamp": "2013-05-25T00:00:20.365Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374223175,
+ "lngE7": -1221556472
+ }, {
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }, {
+ "latE7": 374213256,
+ "lngE7": -1221516876
+ }, {
+ "latE7": 374262084,
+ "lngE7": -1221475982
+ }, {
+ "latE7": 374258155,
+ "lngE7": -1221469192
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1427.5262085237796,
+ "travelMode": "DRIVE",
+ "confidence": 0.9761447372281408
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374209709,
+ "lngE7": -1221561508,
+ "accuracyMeters": 57,
+ "timestamp": "2013-05-24T23:48:20.051Z"
+ }, {
+ "latE7": 374214020,
+ "lngE7": -1221518250,
+ "accuracyMeters": 36,
+ "timestamp": "2013-05-24T23:55:21.232Z"
+ }, {
+ "latE7": 374260597,
+ "lngE7": -1221480179,
+ "accuracyMeters": 79,
+ "timestamp": "2013-05-25T00:00:20.365Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 47.651962
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T00:00:20.365Z",
+ "endTimestamp": "2013-05-25T00:14:42.483Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374257738,
+ "centerLngE7": -1221469750,
+ "visitConfidence": 67,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374274745,
+ "longitudeE7": -1221697190,
+ "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk",
+ "address": "450 Serra Mall, Stanford, CA 94305, USA",
+ "name": "Stanford University",
+ "locationConfidence": 9.649469
+ }, {
+ "latitudeE7": 374255135,
+ "longitudeE7": -1221471651,
+ "placeId": "ChIJA3GyEOa6j4ARo9WrFc23Cpk",
+ "address": "2280 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Jack in the Box",
+ "locationConfidence": 5.082496
+ }, {
+ "latitudeE7": 374259055,
+ "longitudeE7": -1221467842,
+ "placeId": "ChIJb3EvE-a6j4AR60xYY-_exSc",
+ "address": "2275 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "First Republic Bank",
+ "locationConfidence": 3.0417814
+ }, {
+ "latitudeE7": 374252919,
+ "longitudeE7": -1221468032,
+ "placeId": "ChIJU1wcA-a6j4ARcS9DK7_SdtA",
+ "address": "2310 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Panda Express",
+ "locationConfidence": 3.0046065
+ }, {
+ "latitudeE7": 374258940,
+ "longitudeE7": -1221475777,
+ "placeId": "ChIJI98VFua6j4ARU2KXCD6DIbo",
+ "address": "2200 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Palo Alto Shell",
+ "locationConfidence": 2.4985957
+ }, {
+ "latitudeE7": 374261662,
+ "longitudeE7": -1221469844,
+ "placeId": "ChIJ0Xb6Eua6j4AR-hL3ya92iYE",
+ "address": "2233 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Pip Marketing, Signs, Print",
+ "locationConfidence": 1.4506882
+ }, {
+ "latitudeE7": 374259439,
+ "longitudeE7": -1221454485,
+ "placeId": "ChIJtXQ38-W6j4AR44dFBS3v120",
+ "address": "448 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Terún",
+ "locationConfidence": 1.0639622
+ }, {
+ "latitudeE7": 374260126,
+ "longitudeE7": -1221469183,
+ "placeId": "ChIJf88eFDq7j4AR9Spy_hhsYY0",
+ "address": "2237 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Village Flower Shoppe",
+ "locationConfidence": 0.9517233
+ }, {
+ "latitudeE7": 374263573,
+ "longitudeE7": -1221472225,
+ "placeId": "ChIJPdmDa-a6j4ARd3XaHdAifWo",
+ "address": "2209 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "R \u0026 B Seafood Restaurant",
+ "locationConfidence": 0.86136687
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 45,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 47.651962
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82903
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T00:14:42.483Z",
+ "endTimestamp": "2013-05-25T00:19:24.481Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374255065,
+ "lngE7": -1221467895
+ }, {
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 915.7895954833042,
+ "travelMode": "WALK",
+ "confidence": 0.99904164115236
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.82903
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T00:19:24.481Z",
+ "endTimestamp": "2013-05-25T17:14:55.534Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276324,
+ "centerLngE7": -1221403080,
+ "visitConfidence": 96,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0943748
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.016393604
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0029232523
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0024249342
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.002083785
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019364866
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018934327
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0017967963
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0015058464
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T17:14:55.534Z",
+ "endTimestamp": "2013-05-25T17:21:23.901Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374012222,
+ "lngE7": -1221067504
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5477.428872096449,
+ "travelMode": "DRIVE",
+ "confidence": 0.8359270647378793
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T17:21:23.901Z",
+ "endTimestamp": "2013-05-25T17:37:36.194Z"
+ },
+ "distance": 1769,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374012222,
+ "lngE7": -1221067504
+ }, {
+ "latE7": 374007835,
+ "lngE7": -1221065216
+ }, {
+ "latE7": 374017944,
+ "lngE7": -1221081008
+ }, {
+ "latE7": 374043121,
+ "lngE7": -1221096191
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 556.6755652295768,
+ "travelMode": "WALK",
+ "confidence": 0.7074953763413304
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374005470,
+ "lngE7": -1221063309,
+ "accuracyMeters": 45,
+ "timestamp": "2013-05-25T17:27:56.136Z"
+ }, {
+ "latE7": 374017792,
+ "lngE7": -1221080704,
+ "accuracyMeters": 45,
+ "timestamp": "2013-05-25T17:34:23.650Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T17:46:01.858Z",
+ "endTimestamp": "2013-05-25T17:53:56.930Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374049148,
+ "lngE7": -1221086425
+ }, {
+ "latE7": 374277915,
+ "lngE7": -1221402282
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5407.701740323884,
+ "travelMode": "DRIVE",
+ "confidence": 0.8110855422683221
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.784035
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T17:53:56.930Z",
+ "endTimestamp": "2013-05-25T18:46:27.080Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374277605,
+ "centerLngE7": -1221403549,
+ "visitConfidence": 75,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.11979024
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0103222355
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.003959983
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.003044054
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0025619154
+ }, {
+ "latitudeE7": 374280769,
+ "longitudeE7": -1221427801,
+ "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4",
+ "address": "2450 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Palo Alto Pizza Co.",
+ "locationConfidence": 0.0021048058
+ }, {
+ "latitudeE7": 374282040,
+ "longitudeE7": -1221430771,
+ "placeId": "ChIJ18XmBuW6j4AR92u-CQCK-_U",
+ "address": "201 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Baumé",
+ "locationConfidence": 0.0019119063
+ }, {
+ "latitudeE7": 374283882,
+ "longitudeE7": -1221426273,
+ "placeId": "ChIJ74GDA-W6j4ARxWkAgnw8D6g",
+ "address": "151 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Peking Duck Restaurant",
+ "locationConfidence": 0.0018956425
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0018724627
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.784035
+ },
+ "endLocation": {
+ "latitudeE7": 374288751,
+ "longitudeE7": -1221434036,
+ "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg",
+ "address": "164 California Ave, Palo Alto, California 94306-1621, United States",
+ "name": "Mollie Stone\u0027s Markets",
+ "locationConfidence": 33.955853,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T18:46:27.080Z",
+ "endTimestamp": "2013-05-25T18:49:58.414Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374279937,
+ "lngE7": -1221404113
+ }, {
+ "latE7": 374288291,
+ "lngE7": -1221435317
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 388.248283028159,
+ "travelMode": "WALK",
+ "confidence": 0.9992033339686518
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374288751,
+ "longitudeE7": -1221434036,
+ "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg",
+ "address": "164 California Ave, Palo Alto, California 94306-1621, United States",
+ "name": "Mollie Stone\u0027s Markets",
+ "locationConfidence": 33.955853,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T18:49:58.414Z",
+ "endTimestamp": "2013-05-25T19:00:18.975Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374289578,
+ "centerLngE7": -1221433622,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "locationConfidence": 26.588251
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 10.155618
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 1.8825176
+ }, {
+ "latitudeE7": 374294542,
+ "longitudeE7": -1221437749,
+ "placeId": "ChIJw5kQAuW6j4AR6lmmC3KP9o8",
+ "address": "164 California Ave, Palo Alto, CA 94306, USA",
+ "name": "rePLANET Recycling",
+ "locationConfidence": 1.6258453,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 374287816,
+ "longitudeE7": -1221430635,
+ "placeId": "ChIJf6-g_eS6j4AR6b6h8wK_1XY",
+ "locationConfidence": 1.457066
+ }, {
+ "latitudeE7": 374291461,
+ "longitudeE7": -1221441481,
+ "placeId": "ChIJp1VHW-S6j4ARaYLteG5hAXg",
+ "address": "240B Cambridge Ave, Palo Alto, CA 94306, USA",
+ "name": "Domino\u0027s Pizza",
+ "locationConfidence": 1.2165235
+ }, {
+ "latitudeE7": 374278502,
+ "longitudeE7": -1221431950,
+ "placeId": "ChIJdTbWp-W6j4ARKbrpGRZUp38",
+ "address": "249 California Ave, Palo Alto, CA 94306, USA",
+ "name": "FedEx Office Print \u0026 Ship Center",
+ "locationConfidence": 1.0837091
+ }, {
+ "latitudeE7": 374285618,
+ "longitudeE7": -1221434178,
+ "placeId": "ChIJZfNVkDm7j4ARVW4mpMwvRcw",
+ "address": "200 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Stript Wax Bar",
+ "locationConfidence": 0.9972979
+ }, {
+ "latitudeE7": 374288823,
+ "longitudeE7": -1221433682,
+ "placeId": "ChIJZblx_OS6j4ARiy351dORP8w",
+ "address": "Mollie Stone\u0027s, 164 S California Av, Palo Alto, CA 94306, USA",
+ "name": "Coinstar",
+ "locationConfidence": 0.91097677,
+ "isCurrentLocation": true
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 34,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374288751,
+ "longitudeE7": -1221434036,
+ "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg",
+ "address": "164 California Ave, Palo Alto, California 94306-1621, United States",
+ "name": "Mollie Stone\u0027s Markets",
+ "locationConfidence": 33.955853,
+ "isCurrentLocation": true
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86767
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T19:00:18.975Z",
+ "endTimestamp": "2013-05-25T19:06:23.230Z"
+ },
+ "distance": 310,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374288291,
+ "lngE7": -1221435317
+ }, {
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 418.71709178158596,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.86767
+ },
+ "duration": {
+ "startTimestamp": "2013-05-25T19:06:23.230Z",
+ "endTimestamp": "2013-05-27T19:00:13.257Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276522,
+ "centerLngE7": -1221402846,
+ "visitConfidence": 99,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.081000246
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0046456633
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0025969693
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0020810682
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0017473426
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0016312241
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.001568843
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0014861737
+ }, {
+ "latitudeE7": 374273330,
+ "longitudeE7": -1221403950,
+ "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4",
+ "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA",
+ "name": "Accident Analysis Associates Inc",
+ "locationConfidence": 0.0012049092
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T19:00:13.257Z",
+ "endTimestamp": "2013-05-27T19:03:17.900Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374280204,
+ "lngE7": -1221404495
+ }, {
+ "latE7": 374278259,
+ "lngE7": -1221410217
+ }, {
+ "latE7": 374272613,
+ "lngE7": -1221435089
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 492.8044735832192,
+ "travelMode": "WALK",
+ "confidence": 0.9999010946686769
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374276619,
+ "lngE7": -1221410370,
+ "accuracyMeters": 32,
+ "timestamp": "2013-05-27T18:59:10.731Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 13.104269
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T19:10:37.634Z",
+ "endTimestamp": "2013-05-27T19:21:36.449Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374261586,
+ "centerLngE7": -1221462543,
+ "visitConfidence": 60,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374259439,
+ "longitudeE7": -1221454485,
+ "placeId": "ChIJtXQ38-W6j4AR44dFBS3v120",
+ "address": "448 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Terún",
+ "locationConfidence": 4.3425827
+ }, {
+ "latitudeE7": 374254084,
+ "longitudeE7": -1221453292,
+ "placeId": "ChIJ06EYWO-6j4AR5x1zss9iick",
+ "address": "477 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Izzy\u0027s Brooklyn Bagels",
+ "locationConfidence": 3.9647813
+ }, {
+ "latitudeE7": 374258515,
+ "longitudeE7": -1221454598,
+ "placeId": "ChIJIdvn8OW6j4ARLuSJEAHBDoY",
+ "address": "454 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Jin Sho",
+ "locationConfidence": 2.6382318
+ }, {
+ "latitudeE7": 374261647,
+ "longitudeE7": -1221453776,
+ "placeId": "ChIJc37X8eW6j4ARCGK8720jjo8",
+ "address": "440 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Country Sun Natural Foods",
+ "locationConfidence": 2.589039
+ }, {
+ "latitudeE7": 374259055,
+ "longitudeE7": -1221467842,
+ "placeId": "ChIJb3EvE-a6j4AR60xYY-_exSc",
+ "address": "2275 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "First Republic Bank",
+ "locationConfidence": 2.2676682
+ }, {
+ "latitudeE7": 374255204,
+ "longitudeE7": -1221452713,
+ "placeId": "ChIJRbsp9uW6j4ARyUJHxK7xFX8",
+ "address": "463 California Ave, Palo Alto, CA 94306, USA",
+ "name": "La Bodeguita Del Medio",
+ "locationConfidence": 1.9100096
+ }, {
+ "latitudeE7": 374260126,
+ "longitudeE7": -1221469183,
+ "placeId": "ChIJf88eFDq7j4AR9Spy_hhsYY0",
+ "address": "2237 El Camino Real, Palo Alto, CA 94306, USA",
+ "name": "Village Flower Shoppe",
+ "locationConfidence": 1.6339332
+ }, {
+ "latitudeE7": 374263520,
+ "longitudeE7": -1221464820,
+ "placeId": "ChIJQQY6cua6j4ARBwkxPPNI4Yo",
+ "address": "470 Cambridge Ave, Palo Alto, CA 94306, USA",
+ "name": "Wesley United Methodist Church",
+ "locationConfidence": 1.3846073
+ }, {
+ "latitudeE7": 374260050,
+ "longitudeE7": -1221447975,
+ "placeId": "ChIJA_0-8-W6j4ARRLCg6K5oT6k",
+ "address": "344 California Ave, Palo Alto, CA 94306, USA",
+ "name": "ZombieRunner",
+ "locationConfidence": 1.34745
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 17,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 13.104269
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.71576
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T19:21:36.449Z",
+ "endTimestamp": "2013-05-27T19:30:38.754Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374256782,
+ "lngE7": -1221467590
+ }, {
+ "latE7": 374266433,
+ "lngE7": -1221445083
+ }, {
+ "latE7": 374278068,
+ "lngE7": -1221402816
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 895.9075244217164,
+ "travelMode": "WALK",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374265976,
+ "lngE7": -1221444244,
+ "accuracyMeters": 36,
+ "timestamp": "2013-05-27T19:22:37.573Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.71576
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T19:30:38.754Z",
+ "endTimestamp": "2013-05-27T20:21:03.335Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374278074,
+ "centerLngE7": -1221405183,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.11479273
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.037145823
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0056854305
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0054667154
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0048028613
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.003947045
+ }, {
+ "latitudeE7": 374280769,
+ "longitudeE7": -1221427801,
+ "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4",
+ "address": "2450 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Palo Alto Pizza Co.",
+ "locationConfidence": 0.003298022
+ }, {
+ "latitudeE7": 374283882,
+ "longitudeE7": -1221426273,
+ "placeId": "ChIJ74GDA-W6j4ARxWkAgnw8D6g",
+ "address": "151 California Ave, Palo Alto, CA 94306, USA",
+ "name": "Peking Duck Restaurant",
+ "locationConfidence": 0.0029951865
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0028226227
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T20:21:03.335Z",
+ "endTimestamp": "2013-05-27T20:27:08.374Z"
+ },
+ "distance": 877,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374279937,
+ "lngE7": -1221404037
+ }, {
+ "latE7": 374257202,
+ "lngE7": -1221466751
+ }, {
+ "latE7": 374245033,
+ "lngE7": -1221446228
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 844.332287996826,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374259071,
+ "lngE7": -1221470490,
+ "accuracyMeters": 60,
+ "timestamp": "2013-05-27T20:23:03.927Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T20:27:08.374Z",
+ "endTimestamp": "2013-05-27T20:31:06.694Z"
+ },
+ "distance": 507,
+ "confidence": "HIGH",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374245376,
+ "lngE7": -1221445846
+ }, {
+ "latE7": 374277420,
+ "lngE7": -1221402282
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 790.5195040601651,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.890144
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T20:31:06.694Z",
+ "endTimestamp": "2013-05-27T21:09:25.197Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276610,
+ "centerLngE7": -1221402448,
+ "visitConfidence": 78,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.045593824
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.0111799445
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0034974988
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0024004467
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0022809075
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0017589341
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0012787046
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0012270908
+ }, {
+ "latitudeE7": 374281042,
+ "longitudeE7": -1221413747,
+ "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE",
+ "address": "150 Grant Ave F, Palo Alto, CA 94306, USA",
+ "name": "Loy D. Martin Furniture",
+ "locationConfidence": 0.0012154556
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.890144
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.803085
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:09:25.522Z",
+ "endTimestamp": "2013-05-27T21:27:27.003Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277648,
+ "lngE7": -1221401977
+ }, {
+ "latE7": 374110221,
+ "lngE7": -1221236953
+ }, {
+ "latE7": 374281120,
+ "lngE7": -1221405944
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 6910.1012224426995,
+ "travelMode": "DRIVE",
+ "confidence": 0.986388580474852
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374109573,
+ "lngE7": -1221238174,
+ "accuracyMeters": 42,
+ "timestamp": "2013-05-27T21:21:28.550Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.803085
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:27:27.003Z",
+ "endTimestamp": "2013-05-27T21:43:39.881Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374277600,
+ "centerLngE7": -1221403893,
+ "visitConfidence": 77,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.08581843
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.014548435
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.01003801
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.004427545
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.004233767
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0035034674
+ }, {
+ "latitudeE7": 374281042,
+ "longitudeE7": -1221413747,
+ "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE",
+ "address": "150 Grant Ave F, Palo Alto, CA 94306, USA",
+ "name": "Loy D. Martin Furniture",
+ "locationConfidence": 0.0024435683
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0021759016
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.002170618
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.803085
+ },
+ "endLocation": {
+ "latitudeE7": 374265383,
+ "longitudeE7": -1221400207
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:43:39.881Z",
+ "endTimestamp": "2013-05-27T21:46:23.765Z"
+ },
+ "distance": 140,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278068,
+ "lngE7": -1221402816
+ }, {
+ "latE7": 374266815,
+ "lngE7": -1221399078
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 159.50407093070183,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374265383,
+ "longitudeE7": -1221400207
+ },
+ "endLocation": {
+ "latitudeE7": 374242993,
+ "longitudeE7": -1221147512
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:46:23.765Z",
+ "endTimestamp": "2013-05-27T21:50:46.753Z"
+ },
+ "distance": 2898,
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374280411,
+ "lngE7": -1221207757,
+ "accuracyMeters": 43,
+ "timestamp": "2013-05-27T21:49:39.074Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2382.9549697274715
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:50:46.753Z",
+ "endTimestamp": "2013-05-27T21:57:54.315Z"
+ },
+ "distance": 1313,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374242782,
+ "lngE7": -1221147766
+ }, {
+ "latE7": 374284400,
+ "lngE7": -1221056060
+ }, {
+ "latE7": 374270057,
+ "lngE7": -1221095428
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 568.621768305288,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374284286,
+ "lngE7": -1221055984,
+ "accuracyMeters": 5,
+ "timestamp": "2013-05-27T21:53:23.264Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T21:57:54.315Z",
+ "endTimestamp": "2013-05-27T22:10:42.291Z"
+ },
+ "distance": 3772,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374269752,
+ "lngE7": -1221095199
+ }, {
+ "latE7": 374023857,
+ "lngE7": -1221125411
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 3846.1473248572142,
+ "travelMode": "DRIVE",
+ "confidence": 0.8649864408052963
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374016175,
+ "longitudeE7": -1221129674,
+ "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA",
+ "address": "685 San Antonio Road Suite 19, Mountain View, California 94040, United States",
+ "name": "Jared",
+ "locationConfidence": 14.109853,
+ "isCurrentLocation": true
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T22:16:28.155Z",
+ "endTimestamp": "2013-05-27T22:31:36.896Z"
+ },
+ "placeConfidence": "LOW_CONFIDENCE",
+ "centerLatE7": 374018236,
+ "centerLngE7": -1221129221,
+ "visitConfidence": 63,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374017565,
+ "longitudeE7": -1221118174,
+ "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc",
+ "address": "645 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Safeway",
+ "locationConfidence": 12.23225
+ }, {
+ "latitudeE7": 374029196,
+ "longitudeE7": -1221137372,
+ "placeId": "ChIJZ9aWP5ywj4ARSQFRC5YOcrc",
+ "address": "630 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Sprouts Farmers Market",
+ "locationConfidence": 8.044707
+ }, {
+ "latitudeE7": 374014648,
+ "longitudeE7": -1221130160,
+ "placeId": "ChIJ7R0oCJywj4ARzvtHBegJQ3Y",
+ "address": "685 San Antonio Rd, Mountain View, CA 94040, USA",
+ "name": "Nekter Juice Bar",
+ "locationConfidence": 7.710585,
+ "isCurrentLocation": true
+ }, {
+ "latitudeE7": 373999768,
+ "longitudeE7": -1221097812,
+ "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY",
+ "address": "2550 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "San Antonio Center",
+ "locationConfidence": 6.063436
+ }, {
+ "latitudeE7": 374019094,
+ "longitudeE7": -1221144992,
+ "placeId": "ChIJAwHOZJywj4AR-4DRT7M_KuA",
+ "locationConfidence": 5.378735
+ }, {
+ "latitudeE7": 374020870,
+ "longitudeE7": -1221107610,
+ "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM",
+ "address": "590 Showers Dr, Mountain View, CA 94040, USA",
+ "name": "Trader Joe\u0027s",
+ "locationConfidence": 3.5700228
+ }, {
+ "latitudeE7": 374027620,
+ "longitudeE7": -1221122274,
+ "placeId": "ChIJ-0gSHZywj4ARQGh008-HoLA",
+ "address": "565 San Antonio Rd #26, Mountain View, CA 94040, USA",
+ "name": "Veggie Grill",
+ "locationConfidence": 2.500743
+ }, {
+ "latitudeE7": 374009260,
+ "longitudeE7": -1221121840,
+ "placeId": "ChIJyS7o4Zuwj4ARon29W1GsXJo",
+ "address": "2580 W El Camino Real, Mountain View, CA 94040, USA",
+ "name": "The Counter Mountain View",
+ "locationConfidence": 2.480193
+ }, {
+ "latitudeE7": 374009029,
+ "longitudeE7": -1221148768,
+ "placeId": "ChIJMwGvgZuwj4ARXPraJMJy13Q",
+ "address": "4546 El Camino Real, Los Altos, CA 94022, USA",
+ "name": "Village Court Shopping Center",
+ "locationConfidence": 2.4135215
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 18,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374016175,
+ "longitudeE7": -1221129674,
+ "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA",
+ "address": "685 San Antonio Road Suite 19, Mountain View, California 94040, United States",
+ "name": "Jared",
+ "locationConfidence": 14.109853,
+ "isCurrentLocation": true
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.81877
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T22:31:36.896Z",
+ "endTimestamp": "2013-05-27T22:37:46.367Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374023857,
+ "lngE7": -1221125411
+ }, {
+ "latE7": 374283256,
+ "lngE7": -1221406707
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4531.836908594771,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.81877
+ },
+ "duration": {
+ "startTimestamp": "2013-05-27T22:37:46.367Z",
+ "endTimestamp": "2013-05-28T14:39:53.448Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276402,
+ "centerLngE7": -1221403165,
+ "visitConfidence": 96,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.098924845
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.016345453
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0038468384
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002984661
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0024763031
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0020814822
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0019560033
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0019316511
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0018169577
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.81877
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.831825
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T14:39:53.448Z",
+ "endTimestamp": "2013-05-28T14:53:31.546Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374217720,
+ "lngE7": -1221545944
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4599.051857075013,
+ "travelMode": "DRIVE",
+ "confidence": 0.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374217682,
+ "lngE7": -1221546173,
+ "accuracyMeters": 54,
+ "timestamp": "2013-05-28T14:45:23.366Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.831825
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T14:53:31.546Z",
+ "endTimestamp": "2013-05-28T23:04:29.597Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276450,
+ "centerLngE7": -1221403039,
+ "visitConfidence": 90,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.091405235
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.015170062
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0034937337
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0028167963
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0023051992
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0019365425
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0018015004
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0017872674
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0016731644
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T23:04:29.597Z",
+ "endTimestamp": "2013-05-28T23:11:45.559Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278182,
+ "lngE7": -1221402435
+ }, {
+ "latE7": 374275932,
+ "lngE7": -1221415863
+ }, {
+ "latE7": 374248428,
+ "lngE7": -1221452789
+ }, {
+ "latE7": 374208908,
+ "lngE7": -1221572341
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2844.9127221952062,
+ "travelMode": "DRIVE",
+ "confidence": 0.9451452048399123
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374277382,
+ "lngE7": -1221414642,
+ "accuracyMeters": 35,
+ "timestamp": "2013-05-28T23:04:29.597Z"
+ }, {
+ "latE7": 374248428,
+ "lngE7": -1221452789,
+ "accuracyMeters": 40,
+ "timestamp": "2013-05-28T23:05:33.865Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T23:11:45.559Z",
+ "endTimestamp": "2013-05-28T23:31:11.748Z"
+ },
+ "distance": 2533,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374208908,
+ "lngE7": -1221572341
+ }, {
+ "latE7": 374205093,
+ "lngE7": -1221561203
+ }, {
+ "latE7": 374275283,
+ "lngE7": -1221494750
+ }, {
+ "latE7": 374251708,
+ "lngE7": -1221458892
+ }, {
+ "latE7": 374288291,
+ "lngE7": -1221435317
+ }, {
+ "latE7": 374287185,
+ "lngE7": -1221428222
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2148.533344214161,
+ "travelMode": "WALK",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374206467,
+ "lngE7": -1221560135,
+ "accuracyMeters": 45,
+ "timestamp": "2013-05-28T23:17:23.909Z"
+ }, {
+ "latE7": 374274368,
+ "lngE7": -1221496048,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-28T23:19:52.451Z"
+ }, {
+ "latE7": 374252090,
+ "lngE7": -1221459732,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-28T23:21:55.595Z"
+ }, {
+ "latE7": 374289665,
+ "lngE7": -1221434402,
+ "accuracyMeters": 24,
+ "timestamp": "2013-05-28T23:28:02.291Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374286768,
+ "longitudeE7": -1221427377
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.841064
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T23:31:11.748Z",
+ "endTimestamp": "2013-05-28T23:34:33.743Z"
+ },
+ "confidence": "UNKNOWN_CONFIDENCE",
+ "activities": [{
+ "activityType": "UNKNOWN_ACTIVITY_TYPE",
+ "probability": 0.0
+ }],
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374339382,
+ "lngE7": -1221392684,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-28T23:33:32.449Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1333.636065975532
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.841064
+ },
+ "duration": {
+ "startTimestamp": "2013-05-28T23:34:33.743Z",
+ "endTimestamp": "2013-05-29T14:37:40.859Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276525,
+ "centerLngE7": -1221402975,
+ "visitConfidence": 96,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.08735204
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.014266795
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0032501495
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0027152568
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0021972626
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0018264644
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0017191498
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016694167
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0015737513
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.841064
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.851166
+ },
+ "duration": {
+ "startTimestamp": "2013-05-29T14:37:40.859Z",
+ "endTimestamp": "2013-05-29T14:51:23.435Z"
+ },
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374258346,
+ "lngE7": -1221437988
+ }, {
+ "latE7": 374219017,
+ "lngE7": -1221552886
+ }, {
+ "latE7": 374218330,
+ "lngE7": -1221485290
+ }, {
+ "latE7": 374269905,
+ "lngE7": -1221442184
+ }, {
+ "latE7": 374277763,
+ "lngE7": -1221402130
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 4785.183196721214,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374258041,
+ "lngE7": -1221437378,
+ "accuracyMeters": 44,
+ "timestamp": "2013-05-29T14:38:41.822Z"
+ }, {
+ "latE7": 374216728,
+ "lngE7": -1221554871,
+ "accuracyMeters": 36,
+ "timestamp": "2013-05-29T14:43:16.161Z"
+ }, {
+ "latE7": 374218216,
+ "lngE7": -1221485062,
+ "accuracyMeters": 27,
+ "timestamp": "2013-05-29T14:45:57.286Z"
+ }, {
+ "latE7": 374269447,
+ "lngE7": -1221443329,
+ "accuracyMeters": 39,
+ "timestamp": "2013-05-29T14:49:20.144Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.851166
+ },
+ "duration": {
+ "startTimestamp": "2013-05-29T14:51:23.435Z",
+ "endTimestamp": "2013-05-30T00:24:39.913Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374276592,
+ "centerLngE7": -1221402850,
+ "visitConfidence": 91,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.08090092
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.013274189
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0029598859
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.002584739
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0020595645
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.001704694
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0016148346
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.001530117
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0014553012
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T00:24:39.913Z",
+ "endTimestamp": "2013-05-30T00:38:25.538Z"
+ },
+ "distance": 2074,
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277343,
+ "lngE7": -1221402206
+ }, {
+ "latE7": 374278945,
+ "lngE7": -1221420745
+ }, {
+ "latE7": 374261932,
+ "lngE7": -1221476669
+ }, {
+ "latE7": 374210395,
+ "lngE7": -1221575164
+ }, {
+ "latE7": 374227638,
+ "lngE7": -1221535415
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1872.7203728688041,
+ "travelMode": "WALK",
+ "confidence": 0.8164132930808975
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374279366,
+ "lngE7": -1221418457,
+ "accuracyMeters": 22,
+ "timestamp": "2013-05-30T00:26:20.961Z"
+ }, {
+ "latE7": 374260864,
+ "lngE7": -1221474762,
+ "accuracyMeters": 40,
+ "timestamp": "2013-05-30T00:29:16.995Z"
+ }, {
+ "latE7": 374211464,
+ "lngE7": -1221570206,
+ "accuracyMeters": 25,
+ "timestamp": "2013-05-30T00:33:27.844Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T00:38:25.538Z",
+ "endTimestamp": "2013-05-30T00:57:26.531Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374227333,
+ "lngE7": -1221535644
+ }, {
+ "latE7": 374169883,
+ "lngE7": -1221302261
+ }, {
+ "latE7": 374213333,
+ "lngE7": -1221363906
+ }, {
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 2216.0312505273473,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374171371,
+ "lngE7": -1221301041,
+ "accuracyMeters": 30,
+ "timestamp": "2013-05-30T00:47:06.670Z"
+ }, {
+ "latE7": 374212990,
+ "lngE7": -1221363220,
+ "accuracyMeters": 24,
+ "timestamp": "2013-05-30T00:53:21.814Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.858475
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T00:57:26.531Z",
+ "endTimestamp": "2013-05-30T14:40:29.145Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374278965,
+ "centerLngE7": -1221400482,
+ "visitConfidence": 91,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.074158765
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.012031097
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.005047023
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.002609204
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0022459428
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0016997212
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0015752423
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0014453823
+ }, {
+ "latitudeE7": 374270127,
+ "longitudeE7": -1221422070,
+ "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU",
+ "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA",
+ "name": "Santa Clara County Superior Ct",
+ "locationConfidence": 0.0012749592
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.858475
+ },
+ "endLocation": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 86.042274
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T14:40:29.145Z",
+ "endTimestamp": "2013-05-30T15:06:59.413Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277648,
+ "lngE7": -1221401977
+ }, {
+ "latE7": 374260330,
+ "lngE7": -1221436309
+ }, {
+ "latE7": 374217071,
+ "lngE7": -1221542510
+ }, {
+ "latE7": 374509277,
+ "lngE7": -1221586990
+ }, {
+ "latE7": 374680480,
+ "lngE7": -1221565704
+ }, {
+ "latE7": 374861907,
+ "lngE7": -1221473846
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 9879.22157868914,
+ "travelMode": "DRIVE",
+ "confidence": 0.9658412646874545
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374262390,
+ "lngE7": -1221437531,
+ "accuracyMeters": 40,
+ "timestamp": "2013-05-30T14:43:56.951Z"
+ }, {
+ "latE7": 374218864,
+ "lngE7": -1221546097,
+ "accuracyMeters": 52,
+ "timestamp": "2013-05-30T14:50:18.480Z"
+ }, {
+ "latE7": 374506493,
+ "lngE7": -1221590271,
+ "accuracyMeters": 97,
+ "timestamp": "2013-05-30T14:57:52.879Z"
+ }, {
+ "latE7": 374681816,
+ "lngE7": -1221566238,
+ "accuracyMeters": 15,
+ "timestamp": "2013-05-30T15:02:52.425Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 86.042274
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T15:06:59.413Z",
+ "endTimestamp": "2013-05-30T19:31:06.026Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374855770,
+ "centerLngE7": -1221481411,
+ "visitConfidence": 81,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 9.125081
+ }, {
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 2.5058904
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 2.2965887
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.016460212
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.007123902
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k",
+ "locationConfidence": 0.006583685
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374858838,
+ "lngE7": -1221472884,
+ "accuracyMeters": 73,
+ "timestamp": "2013-05-30T15:09:21.436Z"
+ }, {
+ "latE7": 374858838,
+ "lngE7": -1221472884,
+ "accuracyMeters": 23,
+ "timestamp": "2013-05-30T15:10:59.475Z"
+ }, {
+ "latE7": 374853951,
+ "lngE7": -1221475686,
+ "accuracyMeters": 34,
+ "timestamp": "2013-05-30T15:12:22.424Z"
+ }, {
+ "latE7": 374857815,
+ "lngE7": -1221484976,
+ "accuracyMeters": 28,
+ "timestamp": "2013-05-30T15:16:38.446Z"
+ }, {
+ "latE7": 374859723,
+ "lngE7": -1221492777,
+ "accuracyMeters": 40,
+ "timestamp": "2013-05-30T15:26:56.993Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 1448.475327159347
+ },
+ "locationConfidence": 77,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T19:31:06.026Z",
+ "endTimestamp": "2013-05-30T19:53:35.161Z"
+ },
+ "distance": 5710,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374859313,
+ "lngE7": -1221480331
+ }, {
+ "latE7": 374548950,
+ "lngE7": -1221781845
+ }, {
+ "latE7": 374518775,
+ "lngE7": -1221794738
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 7114.098732478995,
+ "travelMode": "DRIVE",
+ "confidence": 0.9962689858151275
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374547653,
+ "lngE7": -1221774826,
+ "accuracyMeters": 49,
+ "timestamp": "2013-05-30T19:50:28.234Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T20:00:05.065Z",
+ "endTimestamp": "2013-05-30T20:12:05.033Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374519844,
+ "lngE7": -1221796722
+ }, {
+ "latE7": 374279022,
+ "lngE7": -1221448822
+ }, {
+ "latE7": 374283828,
+ "lngE7": -1221395263
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5463.660002327401,
+ "travelMode": "DRIVE",
+ "confidence": 0.9977404029695996
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374279175,
+ "lngE7": -1221449814,
+ "accuracyMeters": 71,
+ "timestamp": "2013-05-30T20:10:09.430Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.8687
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T20:12:05.033Z",
+ "endTimestamp": "2013-05-30T22:37:14.768Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374279877,
+ "centerLngE7": -1221399695,
+ "visitConfidence": 70,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.056612696
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.011765054
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.0065590693
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0028491807
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0025841764
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0021606905
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0017208023
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0016689696
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0016545571
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.8687
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85014
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T22:37:14.768Z",
+ "endTimestamp": "2013-05-30T22:57:24.727Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374277610,
+ "lngE7": -1221401901
+ }, {
+ "latE7": 374266357,
+ "lngE7": -1221431274
+ }, {
+ "latE7": 374250907,
+ "lngE7": -1221485443
+ }, {
+ "latE7": 374206352,
+ "lngE7": -1221563720
+ }, {
+ "latE7": 374213142,
+ "lngE7": -1221489562
+ }, {
+ "latE7": 374278182,
+ "lngE7": -1221436157
+ }, {
+ "latE7": 374278221,
+ "lngE7": -1221402435
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 5093.832783644707,
+ "travelMode": "DRIVE",
+ "confidence": 1.0
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374266357,
+ "lngE7": -1221431274,
+ "accuracyMeters": 69,
+ "timestamp": "2013-05-30T22:40:52.141Z"
+ }, {
+ "latE7": 374251175,
+ "lngE7": -1221484909,
+ "accuracyMeters": 59,
+ "timestamp": "2013-05-30T22:41:59.108Z"
+ }, {
+ "latE7": 374210167,
+ "lngE7": -1221565094,
+ "accuracyMeters": 37,
+ "timestamp": "2013-05-30T22:43:39.300Z"
+ }, {
+ "latE7": 374212837,
+ "lngE7": -1221489563,
+ "accuracyMeters": 43,
+ "timestamp": "2013-05-30T22:51:55.364Z"
+ }, {
+ "latE7": 374277420,
+ "lngE7": -1221436615,
+ "accuracyMeters": 45,
+ "timestamp": "2013-05-30T22:55:26.010Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.85014
+ },
+ "duration": {
+ "startTimestamp": "2013-05-30T22:57:24.727Z",
+ "endTimestamp": "2013-05-31T14:34:29.797Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280494,
+ "centerLngE7": -1221398798,
+ "visitConfidence": 92,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.058510758
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.013538767
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.009143938
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.0034289237
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.003256861
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0024962313
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.0020503402
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0020390449
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.0020293256
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-31T14:34:29.797Z",
+ "endTimestamp": "2013-05-31T14:38:07.573Z"
+ },
+ "distance": 240,
+ "confidence": "LOW",
+ "activities": [{
+ "activityType": "WALKING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374278297,
+ "lngE7": -1221402893
+ }, {
+ "latE7": 374274101,
+ "lngE7": -1221398162
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 79.94657784822408,
+ "travelMode": "WALK",
+ "confidence": 0.8815986790702666
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ },
+ "endLocation": {
+ },
+ "duration": {
+ "startTimestamp": "2013-05-31T14:38:07.573Z",
+ "endTimestamp": "2013-05-31T14:49:18.856Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "FLYING",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374274177,
+ "lngE7": -1221399841
+ }, {
+ "latE7": 374861907,
+ "lngE7": -1221473846
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 9354.719395404194,
+ "travelMode": "DRIVE",
+ "confidence": 0.9460291771801353
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 77.35704
+ },
+ "duration": {
+ "startTimestamp": "2013-05-31T14:49:18.856Z",
+ "endTimestamp": "2013-05-31T15:07:55.210Z"
+ },
+ "placeConfidence": "MEDIUM_CONFIDENCE",
+ "centerLatE7": 374857593,
+ "centerLngE7": -1221470100,
+ "visitConfidence": 76,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374858048,
+ "longitudeE7": -1221480233,
+ "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 13.555455
+ }, {
+ "latitudeE7": 374945295,
+ "longitudeE7": -1220734968,
+ "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4",
+ "address": "2 Marshlands Rd, Fremont, CA 94555, USA",
+ "name": "Don Edwards San Francisco Bay National Wildlife Refuge",
+ "locationConfidence": 7.0316186
+ }, {
+ "latitudeE7": 374841127,
+ "longitudeE7": -1221482444,
+ "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 2.0089135
+ }, {
+ "latitudeE7": 374841002,
+ "longitudeE7": -1221482519,
+ "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs",
+ "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA",
+ "name": "Alan K Newman DDS PC",
+ "locationConfidence": 0.03839823
+ }, {
+ "latitudeE7": 374833871,
+ "longitudeE7": -1221494961,
+ "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q",
+ "locationConfidence": 0.008573283
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374859028,
+ "lngE7": -1221466021,
+ "accuracyMeters": 36,
+ "timestamp": "2013-05-31T14:50:44.110Z"
+ }, {
+ "latE7": 374858715,
+ "lngE7": -1221473081,
+ "accuracyMeters": 43,
+ "timestamp": "2013-05-31T14:55:09.280Z"
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 62.39012718225053
+ },
+ "locationConfidence": 70,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }, {
+ "activitySegment": {
+ "startLocation": {
+ "latitudeE7": 374850711,
+ "longitudeE7": -1221474242,
+ "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q",
+ "address": "1 Hacker Way, Menlo Park, California 94025, United States",
+ "name": "Facebook",
+ "locationConfidence": 77.35704
+ },
+ "endLocation": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.72459
+ },
+ "duration": {
+ "startTimestamp": "2013-05-31T15:07:55.210Z",
+ "endTimestamp": "2013-05-31T15:36:46.094Z"
+ },
+ "confidence": "MEDIUM",
+ "activities": [{
+ "activityType": "IN_VEHICLE",
+ "probability": 0.0
+ }, {
+ "activityType": "CYCLING",
+ "probability": 0.0
+ }, {
+ "activityType": "WALKING",
+ "probability": 0.0
+ }],
+ "waypointPath": {
+ "waypoints": [{
+ "latE7": 374862403,
+ "lngE7": -1221472244
+ }, {
+ "latE7": 374866905,
+ "lngE7": -1221425094
+ }, {
+ "latE7": 374550819,
+ "lngE7": -1221637954
+ }, {
+ "latE7": 374493370,
+ "lngE7": -1221602478
+ }, {
+ "latE7": 374376335,
+ "lngE7": -1221599578
+ }, {
+ "latE7": 374283828,
+ "lngE7": -1221395263
+ }],
+ "source": "BACKFILLED",
+ "distanceMeters": 10363.638438764856,
+ "travelMode": "DRIVE",
+ "confidence": 0.8192409496033403
+ },
+ "simplifiedRawPath": {
+ "points": [{
+ "latE7": 374866867,
+ "lngE7": -1221425018,
+ "accuracyMeters": 3,
+ "timestamp": "2013-05-31T15:10:22.698Z"
+ }, {
+ "latE7": 374550896,
+ "lngE7": -1221636734,
+ "accuracyMeters": 19,
+ "timestamp": "2013-05-31T15:24:58.978Z"
+ }, {
+ "latE7": 374494400,
+ "lngE7": -1221601486,
+ "accuracyMeters": 31,
+ "timestamp": "2013-05-31T15:27:57.542Z"
+ }, {
+ "latE7": 374376945,
+ "lngE7": -1221598587,
+ "accuracyMeters": 36,
+ "timestamp": "2013-05-31T15:33:45.967Z"
+ }]
+ },
+ "editConfirmationStatus": "NOT_CONFIRMED"
+ }
+ }, {
+ "placeVisit": {
+ "location": {
+ "latitudeE7": 374277169,
+ "longitudeE7": -1221401737,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States",
+ "locationConfidence": 99.72459
+ },
+ "duration": {
+ "startTimestamp": "2013-05-31T15:36:46.094Z",
+ "endTimestamp": "2013-06-01T16:06:54.349Z"
+ },
+ "placeConfidence": "HIGH_CONFIDENCE",
+ "centerLatE7": 374280466,
+ "centerLngE7": -1221398937,
+ "visitConfidence": 96,
+ "otherCandidateLocations": [{
+ "latitudeE7": 374277248,
+ "longitudeE7": -1221403860,
+ "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4",
+ "address": "2583 Park Blvd, Palo Alto, CA 94306, USA",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.104555786
+ }, {
+ "latitudeE7": 374267490,
+ "longitudeE7": -1221407290,
+ "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60",
+ "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA",
+ "name": "Caffe Riace",
+ "locationConfidence": 0.024873346
+ }, {
+ "latitudeE7": 374296710,
+ "longitudeE7": -1221410736,
+ "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0",
+ "address": "Palo Alto, CA 94301, USA",
+ "name": "Jerry Bowden Park",
+ "locationConfidence": 0.017310992
+ }, {
+ "latitudeE7": 374281107,
+ "longitudeE7": -1221414007,
+ "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g",
+ "address": "150 Grant Ave, Palo Alto, CA 94306, USA",
+ "name": "Cask",
+ "locationConfidence": 0.006256428
+ }, {
+ "latitudeE7": 374288350,
+ "longitudeE7": -1221427030,
+ "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY",
+ "locationConfidence": 0.0061082696
+ }, {
+ "latitudeE7": 374273799,
+ "longitudeE7": -1221408514,
+ "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0",
+ "address": "2635 Park Blvd, Palo Alto, CA 94306, USA",
+ "name": "Fiber Internet Center",
+ "locationConfidence": 0.0045126737
+ }, {
+ "latitudeE7": 374288998,
+ "longitudeE7": -1221427158,
+ "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc",
+ "semanticType": "TYPE_SEARCHED_ADDRESS",
+ "locationConfidence": 0.004112359
+ }, {
+ "latitudeE7": 374261557,
+ "longitudeE7": -1221411791,
+ "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk",
+ "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA",
+ "name": "Tesla Statue",
+ "locationConfidence": 0.0037618363
+ }, {
+ "latitudeE7": 374274873,
+ "longitudeE7": -1221409366,
+ "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w",
+ "name": "Ductus Inc",
+ "locationConfidence": 0.00356226
+ }],
+ "editConfirmationStatus": "NOT_CONFIRMED",
+ "locationConfidence": 88,
+ "placeVisitType": "SINGLE_PLACE",
+ "placeVisitImportance": "MAIN"
+ }
+ }]
+}
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<gpx version="1.0" creator="GPSBabel - https://www.gpsbabel.org" xmlns="http://www.topografix.com/GPX/1/0">
+ <time>1970-01-01T00:00:00Z</time>
+ <bounds minlat="37.395656500" minlon="-122.391944800" maxlat="51.794387600" maxlon="-94.358078000"/>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-09T01:24:28.883Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-09T18:34:15.144Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-09T20:58:54.448Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-11T00:02:46.884Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.449772100" lon="-122.176515200">
+ <time>2013-05-11T17:15:08.247Z</time>
+ <name>The UPS Store</name>
+ <cmt>405 El Camino Real, Menlo Park, California 94025, United States</cmt>
+ <desc>405 El Camino Real, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-11T17:58:51.797Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.398405100" lon="-121.975156700">
+ <time>2013-05-12T18:11:49.770Z</time>
+ <name>California's Great America</name>
+ <cmt>4701 Great America Parkway, Santa Clara, California 95054, United States</cmt>
+ <desc>4701 Great America Parkway, Santa Clara, California 95054, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-13T16:10:37.703Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-14T14:53:40.149Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-16T14:52:10.663Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-17T14:50:20.849Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T00:28:49.065Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T18:16:59.197Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T19:06:58.548Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.401756500" lon="-122.111817400">
+ <time>2013-05-18T22:17:48.551Z</time>
+ <name>Safeway</name>
+ <cmt>645 San Antonio Road, Mountain View, California 94040, United States</cmt>
+ <desc>645 San Antonio Road, Mountain View, California 94040, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T22:51:20.577Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-20T15:14:23.971Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-20T16:30:45.206Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T00:06:37.463Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T14:51:55.435Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T22:38:18.286Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-22T14:51:15.746Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T00:03:45.880Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T01:03:35.723Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T04:01:57.786Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T14:56:08.813Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.428875100" lon="-122.143403600">
+ <time>2013-05-23T23:55:08.082Z</time>
+ <name>Mollie Stone's Markets</name>
+ <cmt>164 California Ave, Palo Alto, California 94306-1621, United States</cmt>
+ <desc>164 California Ave, Palo Alto, California 94306-1621, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T00:09:19.277Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:08:54.393Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:33:15.539Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.421522900" lon="-122.155310900">
+ <time>2013-05-24T23:29:33.282Z</time>
+ <name>Escondido Elementary School</name>
+ <cmt>890 Escondido Road, Stanford, California 94305-7101, United States</cmt>
+ <desc>890 Escondido Road, Stanford, California 94305-7101, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T00:00:20.365Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T00:19:24.481Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T17:53:56.930Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.428875100" lon="-122.143403600">
+ <time>2013-05-25T18:49:58.414Z</time>
+ <name>Mollie Stone's Markets</name>
+ <cmt>164 California Ave, Palo Alto, California 94306-1621, United States</cmt>
+ <desc>164 California Ave, Palo Alto, California 94306-1621, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T19:06:23.230Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T19:10:37.634Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T19:30:38.754Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T20:31:06.694Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T21:27:27.003Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.401617500" lon="-122.112967400">
+ <time>2013-05-27T22:16:28.155Z</time>
+ <name>Jared</name>
+ <cmt>685 San Antonio Road Suite 19, Mountain View, California 94040, United States</cmt>
+ <desc>685 San Antonio Road Suite 19, Mountain View, California 94040, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T22:37:46.367Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-28T14:53:31.546Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-28T23:34:33.743Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-29T14:51:23.435Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T00:57:26.531Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-30T15:06:59.413Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T20:12:05.033Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T22:57:24.727Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-31T14:49:18.856Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-31T15:36:46.094Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-01T16:21:54.644Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427474500" lon="-122.169719000">
+ <time>2013-06-01T17:43:26.262Z</time>
+ <name>Stanford University</name>
+ <cmt>450 Serra Mall, Stanford, California 94305, United States</cmt>
+ <desc>450 Serra Mall, Stanford, California 94305, United States</desc>
+ </wpt>
+ <wpt lat="37.443701000" lon="-122.162086000">
+ <time>2013-06-01T18:09:09.851Z</time>
+ <name>LYFE Kitchen</name>
+ <cmt>167 Hamilton Ave, Palo Alto, CA 94301, USA</cmt>
+ <desc>167 Hamilton Ave, Palo Alto, CA 94301, USA</desc>
+ </wpt>
+ <wpt lat="37.438477900" lon="-122.157618800">
+ <time>2013-06-01T19:54:30.604Z</time>
+ <name>Trader Joe's</name>
+ <cmt>855 El Camino Real, Palo Alto, California 94301, United States</cmt>
+ <desc>855 El Camino Real, Palo Alto, California 94301, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-01T20:22:37.047Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.426354200" lon="-122.144503700">
+ <time>2013-06-02T16:07:01.748Z</time>
+ <name>Joanie's Cafe</name>
+ <cmt>405 California Avenue, Palo Alto, California 94306, United States</cmt>
+ <desc>405 California Avenue, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-02T16:29:21.689Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.450532100" lon="-122.179157200">
+ <time>2013-06-02T19:52:14.958Z</time>
+ <name>Safeway</name>
+ <cmt>525 El Camino Real, Menlo Park, California 94025, United States</cmt>
+ <desc>525 El Camino Real, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-02T20:19:07.253Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.407619300" lon="-122.111303500">
+ <time>2013-06-03T16:20:20.960Z</time>
+ <name>230 San Antonio Circle, Mountain View, California 94040-1276, United States</name>
+ <cmt>230 San Antonio Circle, Mountain View, California 94040-1276, United States</cmt>
+ <desc>230 San Antonio Circle, Mountain View, California 94040-1276, United States</desc>
+ </wpt>
+ <wpt lat="37.398951000" lon="-122.110810500">
+ <time>2013-06-03T16:48:30.892Z</time>
+ <name>Whole Foods Market</name>
+ <cmt>4800 El Camino Real, Los Altos, California 94022, United States</cmt>
+ <desc>4800 El Camino Real, Los Altos, California 94022, United States</desc>
+ </wpt>
+ <wpt lat="37.400997800" lon="-122.109596400">
+ <time>2013-06-03T17:22:17.443Z</time>
+ <name>Walmart</name>
+ <cmt>600 Showers Drive, Mountain View, California 94040, United States</cmt>
+ <desc>600 Showers Drive, Mountain View, California 94040, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-03T17:49:17.986Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-03T20:08:46.044Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-06-04T14:56:47.682Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-04T16:21:47.537Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.400997800" lon="-122.109596400">
+ <time>2013-06-04T23:15:47.347Z</time>
+ <name>Walmart</name>
+ <cmt>600 Showers Drive, Mountain View, California 94040, United States</cmt>
+ <desc>600 Showers Drive, Mountain View, California 94040, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-04T23:37:41.070Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-06-05T15:15:42.862Z</time>
+ <name>Facebook</name>
+ <cmt>1 Hacker Way, Menlo Park, California 94025, United States</cmt>
+ <desc>1 Hacker Way, Menlo Park, California 94025, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-05T23:18:55.092Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.402919600" lon="-122.113737200">
+ <time>2013-06-06T14:10:00.355Z</time>
+ <name>Sprouts Farmers Market</name>
+ <cmt>630 San Antonio Road, Mountain View, California 94040, United States</cmt>
+ <desc>630 San Antonio Road, Mountain View, California 94040, United States</desc>
+ </wpt>
+ <wpt lat="37.430969400" lon="-122.114409600">
+ <time>2013-06-06T14:44:29.310Z</time>
+ <name>Palo Verde Elementary School</name>
+ <cmt>3450 Louis Road, Palo Alto, California 94303-4403, United States</cmt>
+ <desc>3450 Louis Road, Palo Alto, California 94303-4403, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-06T15:10:04.361Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.423215000" lon="-122.096604600">
+ <time>2013-06-07T00:08:56.576Z</time>
+ <name>REI</name>
+ <cmt>2450 Charleston Road, Mountain View, California 94043-1622, United States</cmt>
+ <desc>2450 Charleston Road, Mountain View, California 94043-1622, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-07T01:18:10.149Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-07T15:09:53.578Z</time>
+ <name>134-248 Oregon Expy, Palo Alto, California 94306, United States</name>
+ <cmt>134-248 Oregon Expy, Palo Alto, California 94306, United States</cmt>
+ <desc>134-248 Oregon Expy, Palo Alto, California 94306, United States</desc>
+ </wpt>
+ <wpt lat="37.430969400" lon="-122.114409600">
+ <time>2013-06-07T20:54:20.732Z</time>
+ <name>Palo Verde Elementary School</name>
+ <cmt>3450 Louis Road, Palo Alto, California 94303-4403, United States</cmt>
+ <desc>3450 Louis Road, Palo Alto, California 94303-4403, United States</desc>
+ </wpt>
+ <wpt lat="39.587995800" lon="-119.717107300">
+ <time>2013-06-08T02:59:05.127Z</time>
+ <name>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</name>
+ <cmt>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</cmt>
+ <desc>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</desc>
+ </wpt>
+ <wpt lat="39.531701500" lon="-119.722948700">
+ <time>2013-06-08T03:51:48.182Z</time>
+ <name>Galaxy Sparks IMAX Luxury+ Theatre</name>
+ <cmt>1170 Scheels Dr, Sparks, Nevada 89434, United States</cmt>
+ <desc>1170 Scheels Dr, Sparks, Nevada 89434, United States</desc>
+ </wpt>
+ <wpt lat="39.587995800" lon="-119.717107300">
+ <time>2013-06-08T05:04:43.176Z</time>
+ <name>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</name>
+ <cmt>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</cmt>
+ <desc>5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States</desc>
+ </wpt>
+ <wpt lat="39.530695500" lon="-119.721709400">
+ <time>2013-06-08T16:33:48.651Z</time>
+ <name>SCHEELS</name>
+ <cmt>1200 Scheels Drive, Sparks, Nevada 89434, United States</cmt>
+ <desc>1200 Scheels Drive, Sparks, Nevada 89434, United States</desc>
+ </wpt>
+ <wpt lat="40.973540000" lon="-117.735309000">
+ <time>2013-06-08T19:38:13.640Z</time>
+ <name>Winnemucca Convention & Visitors Center</name>
+ <cmt>50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States</cmt>
+ <desc>50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States</desc>
+ </wpt>
+ <wpt lat="40.767708600" lon="-111.887062500">
+ <time>2013-06-09T16:19:33.174Z</time>
+ <name>Harmons Grocery - City Creek</name>
+ <cmt>135 East 100 South, Salt Lake City, Utah 84111, United States</cmt>
+ <desc>135 East 100 South, Salt Lake City, Utah 84111, United States</desc>
+ </wpt>
+ <wpt lat="39.694895500" lon="-105.078778300">
+ <time>2013-06-12T00:56:52.103Z</time>
+ <name>O'Connell Middle School</name>
+ <cmt>1275 S Teller St, Lakewood, CO 80232, USA</cmt>
+ <desc>1275 S Teller St, Lakewood, CO 80232, USA</desc>
+ </wpt>
+ <wpt lat="39.694236000" lon="-105.077376500">
+ <time>2013-06-12T02:52:03.380Z</time>
+ <name>Lakewood Link Recreation Center</name>
+ <cmt>1295 S Reed St, Lakewood, Colorado 80232-5520, United States</cmt>
+ <desc>1295 S Reed St, Lakewood, Colorado 80232-5520, United States</desc>
+ </wpt>
+ <wpt lat="39.628663400" lon="-104.841804400">
+ <time>2013-06-12T12:31:07.568Z</time>
+ <name>Cherry Creek State Park</name>
+ <cmt>4201 South Parker Road, Aurora, Colorado 80014-4203, United States</cmt>
+ <desc>4201 South Parker Road, Aurora, Colorado 80014-4203, United States</desc>
+ </wpt>
+ <wpt lat="39.674020000" lon="-104.794000000">
+ <time>2013-06-12T16:43:27.032Z</time>
+ <name>Treads Bicycle Outfitters</name>
+ <cmt>16701 East Iliff Avenue, Aurora, Colorado 80013, United States</cmt>
+ <desc>16701 East Iliff Avenue, Aurora, Colorado 80013, United States</desc>
+ </wpt>
+ <wpt lat="43.933324100" lon="-103.575614800">
+ <time>2013-06-14T16:18:50.973Z</time>
+ <name>Museum @ Black Hills Institute</name>
+ <cmt>117 Main St, Hill City, SD 57745-5106, United States</cmt>
+ <desc>117 Main St, Hill City, SD 57745-5106, United States</desc>
+ </wpt>
+ <wpt lat="43.612120900" lon="-96.951246300">
+ <time>2013-06-15T20:46:04.591Z</time>
+ <name>Coffee Cup Fuel Stop</name>
+ <cmt>1001 S Western Ave, Hartford, South Dakota 57033-2012, United States</cmt>
+ <desc>1001 S Western Ave, Hartford, South Dakota 57033-2012, United States</desc>
+ </wpt>
+ <wpt lat="45.723137500" lon="-94.950432500">
+ <time>2013-06-16T16:36:53.562Z</time>
+ <name>McDonald's</name>
+ <cmt>1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States</cmt>
+ <desc>1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States</desc>
+ </wpt>
+ <wpt lat="46.850532000" lon="-96.798943000">
+ <time>2013-06-16T18:39:40.033Z</time>
+ <name>Loaf 'N Jug</name>
+ <cmt>1833 University Dr S, Fargo, ND 58103-4941, United States</cmt>
+ <desc>1833 University Dr S, Fargo, ND 58103-4941, United States</desc>
+ </wpt>
+ <wpt lat="49.343173800" lon="-97.367577600">
+ <time>2013-06-16T21:55:35.563Z</time>
+ <name>Morris Husky</name>
+ <cmt>Anderson Street, Morris, Manitoba R0G 1K0, Canada</cmt>
+ <desc>Anderson Street, Morris, Manitoba R0G 1K0, Canada</desc>
+ </wpt>
+ <wpt lat="49.894934000" lon="-97.142349600">
+ <time>2013-06-16T23:00:31.090Z</time>
+ <name>The Marlborough Hotel</name>
+ <cmt>331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada</cmt>
+ <desc>331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada</desc>
+ </wpt>
+ <wpt lat="49.895822600" lon="-97.143639000">
+ <time>2013-06-17T01:13:41.340Z</time>
+ <name>Burton Cummings Theatre</name>
+ <cmt>364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada</cmt>
+ <desc>364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada</desc>
+ </wpt>
+ <wpt lat="49.895535100" lon="-97.139019000">
+ <time>2013-06-17T14:39:04.140Z</time>
+ <name>WPT096</name>
+ <cmt>WPT096</cmt>
+ <desc>WPT096</desc>
+ </wpt>
+ <wpt lat="49.895028600" lon="-97.142497800">
+ <time>2013-06-17T14:53:32.271Z</time>
+ <name>Regal Beagle Pub</name>
+ <cmt>331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada</cmt>
+ <desc>331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada</desc>
+ </wpt>
+ <wpt lat="49.899427000" lon="-97.137168000">
+ <time>2013-06-17T15:37:13.411Z</time>
+ <name>Centennial Concert Hall</name>
+ <cmt>555 Main Street, Winnipeg, MB R3B 1C3, Canada</cmt>
+ <desc>555 Main Street, Winnipeg, MB R3B 1C3, Canada</desc>
+ </wpt>
+ <wpt lat="49.893738700" lon="-97.133995700">
+ <time>2013-06-17T18:08:22.760Z</time>
+ <name>Shaw Park</name>
+ <cmt>1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada</cmt>
+ <desc>1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada</desc>
+ </wpt>
+ <wpt lat="49.898984500" lon="-97.125334300">
+ <time>2013-06-17T18:38:41.244Z</time>
+ <name>Fort Gibraltar</name>
+ <cmt>866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada</cmt>
+ <desc>866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada</desc>
+ </wpt>
+ <wpt lat="49.891728300" lon="-97.122865300">
+ <time>2013-06-17T19:23:23.972Z</time>
+ <name>Le Garage</name>
+ <cmt>166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada</cmt>
+ <desc>166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada</desc>
+ </wpt>
+ <wpt lat="49.895822600" lon="-97.143639000">
+ <time>2013-06-17T22:43:16.919Z</time>
+ <name>Burton Cummings Theatre</name>
+ <cmt>364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada</cmt>
+ <desc>364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada</desc>
+ </wpt>
+ <wpt lat="49.897909800" lon="-97.140740400">
+ <time>2013-06-18T01:29:56.111Z</time>
+ <name>Winnipeg International Writers Festival</name>
+ <cmt>100 Arthur St, Winnipeg, MB R3B 1H3, Canada</cmt>
+ <desc>100 Arthur St, Winnipeg, MB R3B 1H3, Canada</desc>
+ </wpt>
+ <wpt lat="49.897997400" lon="-97.137253500">
+ <time>2013-06-18T02:11:00.566Z</time>
+ <name>Hermanos South American Steakhouse</name>
+ <cmt>179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada</cmt>
+ <desc>179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada</desc>
+ </wpt>
+ <wpt lat="49.895028600" lon="-97.142497800">
+ <time>2013-06-18T02:45:46.829Z</time>
+ <name>Regal Beagle Pub</name>
+ <cmt>331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada</cmt>
+ <desc>331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada</desc>
+ </wpt>
+ <wpt lat="49.887303800" lon="-97.130946300">
+ <time>2013-06-18T16:00:44.493Z</time>
+ <name>The Original Pancake House</name>
+ <cmt>1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada</cmt>
+ <desc>1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada</desc>
+ </wpt>
+ <wpt lat="49.882758600" lon="-97.288419600">
+ <time>2013-06-18T16:48:01.386Z</time>
+ <name>Real Canadian Superstore</name>
+ <cmt>3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada</cmt>
+ <desc>3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada</desc>
+ </wpt>
+ <wpt lat="50.704885800" lon="-99.809547100">
+ <time>2013-06-18T22:02:16Z</time>
+ <name>Whirlpool Lake Campground</name>
+ <cmt>Division No. 17, Unorganized, Manitoba R0J 2H0, Canada</cmt>
+ <desc>Division No. 17, Unorganized, Manitoba R0J 2H0, Canada</desc>
+ </wpt>
+ <wpt lat="50.704885800" lon="-99.809547100">
+ <time>2013-06-19T03:37:25Z</time>
+ <name>Whirlpool Lake Campground</name>
+ <cmt>Division No. 17, Unorganized, Manitoba R0J 2H0, Canada</cmt>
+ <desc>Division No. 17, Unorganized, Manitoba R0J 2H0, Canada</desc>
+ </wpt>
+ <wpt lat="50.653920500" lon="-99.968067600">
+ <time>2013-06-19T15:40:18.571Z</time>
+ <name>Mooswa Resort</name>
+ <cmt>Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada</cmt>
+ <desc>Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada</desc>
+ </wpt>
+ <wpt lat="50.771482900" lon="-101.369137600">
+ <time>2013-06-19T19:24:35.698Z</time>
+ <name>The Russell Inn</name>
+ <cmt>MB-16, Manitoba, Canada</cmt>
+ <desc>MB-16, Manitoba, Canada</desc>
+ </wpt>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485969500" lon="-122.146293600"/>
+ <trkpt lat="37.484748800" lon="-122.147628700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485931300" lon="-122.148033100"/>
+ <trkpt lat="37.485961900" lon="-122.150451600"/>
+ <trkpt lat="37.481353700" lon="-122.150642300"/>
+ <trkpt lat="37.465442600" lon="-122.157218900"/>
+ <trkpt lat="37.454925500" lon="-122.164535500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.454925500" lon="-122.164535500"/>
+ <trkpt lat="37.442256900" lon="-122.152778600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.442256900" lon="-122.152778600"/>
+ <trkpt lat="37.440357200" lon="-122.149749700"/>
+ <trkpt lat="37.438812200" lon="-122.150428700"/>
+ <trkpt lat="37.437007900" lon="-122.147560100"/>
+ <trkpt lat="37.433567000" lon="-122.138870200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.432608500" lon="-122.139104400">
+ <time>2013-05-10T22:55:36.464Z</time>
+ </trkpt>
+ <trkpt lat="37.432608500" lon="-122.139104400">
+ <time>2013-05-10T23:01:52.925Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.422515800" lon="-122.156593300"/>
+ <trkpt lat="37.421199700" lon="-122.154464700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.421169200" lon="-122.154487600"/>
+ <trkpt lat="37.413734400" lon="-122.141311600"/>
+ <trkpt lat="37.416347500" lon="-122.137046800"/>
+ <trkpt lat="37.433589900" lon="-122.138839700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.425711700" lon="-122.147439100">
+ <time>2013-05-11T16:57:13.361Z</time>
+ </trkpt>
+ <trkpt lat="37.425838400" lon="-122.147262500"/>
+ <trkpt lat="37.425373000" lon="-122.147422700"/>
+ <trkpt lat="37.425393000" lon="-122.147407400">
+ <time>2013-05-11T16:58:22.182Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.425711700" lon="-122.147439100">
+ <time>2013-05-11T16:58:22.182Z</time>
+ </trkpt>
+ <trkpt lat="37.425868900" lon="-122.147216700"/>
+ <trkpt lat="37.423091800" lon="-122.149131700"/>
+ <trkpt lat="37.423196800" lon="-122.149484400">
+ <time>2013-05-11T17:03:36.257Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <name>Unknown Activity Type</name>
+ <trkseg>
+ <trkpt lat="37.423196800" lon="-122.149484400">
+ <time>2013-05-11T17:03:36.257Z</time>
+ </trkpt>
+ <trkpt lat="37.448770000" lon="-122.176120000">
+ <time>2013-05-11T17:15:08.247Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.438190700" lon="-122.158273600">
+ <time>2013-05-11T17:53:28.791Z</time>
+ </trkpt>
+ <trkpt lat="37.438194200" lon="-122.158271700"/>
+ <trkpt lat="37.433486900" lon="-122.138870200"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-11T17:58:51.797Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-12T09:03:46.323Z</time>
+ </trkpt>
+ <trkpt lat="37.432624800" lon="-122.139091400"/>
+ <trkpt lat="37.434833500" lon="-122.139060900"/>
+ <trkpt lat="37.434670700" lon="-122.138795300">
+ <time>2013-05-12T13:52:53.712Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.400798700" lon="-121.971049400">
+ <time>2013-05-12T18:27:56.655Z</time>
+ </trkpt>
+ <trkpt lat="37.400646200" lon="-121.970878600"/>
+ <trkpt lat="37.401519700" lon="-121.968154900"/>
+ <trkpt lat="37.395690900" lon="-121.969963000"/>
+ <trkpt lat="37.395683400" lon="-121.969964000">
+ <time>2013-05-12T18:44:35.769Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.395683400" lon="-121.969964000">
+ <time>2013-05-12T18:44:35.769Z</time>
+ </trkpt>
+ <trkpt lat="37.395656500" lon="-121.969963000"/>
+ <trkpt lat="37.427673300" lon="-122.140090900"/>
+ <trkpt lat="37.427677200" lon="-122.140201800">
+ <time>2013-05-12T19:25:09.731Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427753400" lon="-122.140174800"/>
+ <trkpt lat="37.426162700" lon="-122.148635800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.426132200" lon="-122.148658700"/>
+ <trkpt lat="37.427730500" lon="-122.140220600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-14T14:43:03.783Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.421772000" lon="-122.154594400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-14T14:53:40.149Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-16T14:40:30.881Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.424850400" lon="-122.145294100"/>
+ <trkpt lat="37.427394800" lon="-122.141212400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-16T14:52:10.663Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.434478700" lon="-122.140281600"/>
+ <trkpt lat="37.419357200" lon="-122.134742700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.419395400" lon="-122.134712200"/>
+ <trkpt lat="37.427494000" lon="-122.139816200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T18:49:26.198Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.425792600" lon="-122.149711600"/>
+ <trkpt lat="37.419139800" lon="-122.160202000"/>
+ <trkpt lat="37.422321300" lon="-122.150856000"/>
+ <trkpt lat="37.427742000" lon="-122.140129000"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T19:06:58.548Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.426563200" lon="-122.143188400"/>
+ <trkpt lat="37.419143600" lon="-122.160110400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.419143600" lon="-122.160110400"/>
+ <trkpt lat="37.425354000" lon="-122.151237400"/>
+ <trkpt lat="37.401760100" lon="-122.112373300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.401756500" lon="-122.111817400">
+ <time>2013-05-18T22:40:46.472Z</time>
+ </trkpt>
+ <trkpt lat="37.401905000" lon="-122.112258900"/>
+ <trkpt lat="37.428016600" lon="-122.140449500"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-18T22:51:20.577Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427818200" lon="-122.140243500"/>
+ <trkpt lat="37.426033000" lon="-122.143630900"/>
+ <trkpt lat="37.421310400" lon="-122.154571500"/>
+ <trkpt lat="37.433654700" lon="-122.155792200"/>
+ <trkpt lat="37.443916300" lon="-122.164733800"/>
+ <trkpt lat="37.485546100" lon="-122.149566600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485435400" lon="-122.149696300"/>
+ <trkpt lat="37.485176000" lon="-122.149597100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-20T16:11:41.995Z</time>
+ </trkpt>
+ <trkpt lat="37.484092700" lon="-122.147789000"/>
+ <trkpt lat="37.485637600" lon="-122.149429300"/>
+ <trkpt lat="37.444717400" lon="-122.164863500"/>
+ <trkpt lat="37.427791500" lon="-122.140228200"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-20T16:30:45.206Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-20T23:34:50.283Z</time>
+ </trkpt>
+ <trkpt lat="37.427619900" lon="-122.140090900"/>
+ <trkpt lat="37.425678200" lon="-122.143920800"/>
+ <trkpt lat="37.438629100" lon="-122.159683200"/>
+ <trkpt lat="37.420875500" lon="-122.157203600"/>
+ <trkpt lat="37.421581200" lon="-122.149459800"/>
+ <trkpt lat="37.428333200" lon="-122.142982400"/>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T00:06:37.463Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T14:39:27.896Z</time>
+ </trkpt>
+ <trkpt lat="37.427814400" lon="-122.140243500"/>
+ <trkpt lat="37.425525600" lon="-122.144050500"/>
+ <trkpt lat="37.421772000" lon="-122.154594400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-21T14:51:55.435Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.404369300" lon="-122.109580900"/>
+ <trkpt lat="37.404476100" lon="-122.109756400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.404476100" lon="-122.109756400"/>
+ <trkpt lat="37.424503300" lon="-122.151947000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.424522300" lon="-122.151985100"/>
+ <trkpt lat="37.420783900" lon="-122.157714800"/>
+ <trkpt lat="37.420585600" lon="-122.156272800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.420585600" lon="-122.156272800"/>
+ <trkpt lat="37.424350700" lon="-122.146446200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427745800" lon="-122.140235900"/>
+ <trkpt lat="37.425941400" lon="-122.143379200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.425910900" lon="-122.143409700"/>
+ <trkpt lat="37.421772000" lon="-122.154594400"/>
+ <trkpt lat="37.427772500" lon="-122.140205300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428035700" lon="-122.140472400"/>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ <trkpt lat="37.421878800" lon="-122.153953500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.421909300" lon="-122.153930600"/>
+ <trkpt lat="37.427989900" lon="-122.140403700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T00:57:27.597Z</time>
+ </trkpt>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.429782800" lon="-122.147613500"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T01:03:35.723Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T03:56:57.626Z</time>
+ </trkpt>
+ <trkpt lat="37.429805700" lon="-122.147544800"/>
+ <trkpt lat="37.427753400" lon="-122.140182400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T04:01:57.786Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T14:44:38.576Z</time>
+ </trkpt>
+ <trkpt lat="37.427818200" lon="-122.140243500"/>
+ <trkpt lat="37.421241700" lon="-122.154632500"/>
+ <trkpt lat="37.426898900" lon="-122.144355700"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-23T14:56:08.813Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427818200" lon="-122.140243500"/>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ <trkpt lat="37.420570300" lon="-122.157295200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ <trkpt lat="37.428848200" lon="-122.143562300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428875100" lon="-122.143403600">
+ <time>2013-05-24T00:07:16.556Z</time>
+ </trkpt>
+ <trkpt lat="37.428916900" lon="-122.144104000"/>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T00:09:19.277Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:02:59.475Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.429077100" lon="-122.142944300"/>
+ <trkpt lat="37.429767600" lon="-122.147575300"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:08:54.393Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:29:14.561Z</time>
+ </trkpt>
+ <trkpt lat="37.429813300" lon="-122.147590600"/>
+ <trkpt lat="37.427711400" lon="-122.140151900"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-24T14:33:15.539Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.419387800" lon="-122.134704500"/>
+ <trkpt lat="37.414455400" lon="-122.138656600"/>
+ <trkpt lat="37.422195400" lon="-122.153800900"/>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.421522900" lon="-122.155310900">
+ <time>2013-05-24T23:51:20.094Z</time>
+ </trkpt>
+ <trkpt lat="37.422317500" lon="-122.155647200"/>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ <trkpt lat="37.421325600" lon="-122.151687600"/>
+ <trkpt lat="37.426208400" lon="-122.147598200"/>
+ <trkpt lat="37.425815500" lon="-122.146919200"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T00:00:20.365Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T00:14:42.483Z</time>
+ </trkpt>
+ <trkpt lat="37.425506500" lon="-122.146789500"/>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T00:19:24.481Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.401222200" lon="-122.106750400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.401222200" lon="-122.106750400"/>
+ <trkpt lat="37.400783500" lon="-122.106521600"/>
+ <trkpt lat="37.401794400" lon="-122.108100800"/>
+ <trkpt lat="37.404312100" lon="-122.109619100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.404914800" lon="-122.108642500"/>
+ <trkpt lat="37.427791500" lon="-122.140228200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T18:46:27.080Z</time>
+ </trkpt>
+ <trkpt lat="37.427993700" lon="-122.140411300"/>
+ <trkpt lat="37.428829100" lon="-122.143531700"/>
+ <trkpt lat="37.428875100" lon="-122.143403600">
+ <time>2013-05-25T18:49:58.414Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428875100" lon="-122.143403600">
+ <time>2013-05-25T19:00:18.975Z</time>
+ </trkpt>
+ <trkpt lat="37.428829100" lon="-122.143531700"/>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-25T19:06:23.230Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428020400" lon="-122.140449500"/>
+ <trkpt lat="37.427825900" lon="-122.141021700"/>
+ <trkpt lat="37.427261300" lon="-122.143508900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T19:21:36.449Z</time>
+ </trkpt>
+ <trkpt lat="37.425678200" lon="-122.146759000"/>
+ <trkpt lat="37.426643300" lon="-122.144508300"/>
+ <trkpt lat="37.427806800" lon="-122.140281600"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T19:30:38.754Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427993700" lon="-122.140403700"/>
+ <trkpt lat="37.425720200" lon="-122.146675100"/>
+ <trkpt lat="37.424503300" lon="-122.144622800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.424537600" lon="-122.144584600"/>
+ <trkpt lat="37.427742000" lon="-122.140228200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T21:09:25.522Z</time>
+ </trkpt>
+ <trkpt lat="37.427764800" lon="-122.140197700"/>
+ <trkpt lat="37.411022100" lon="-122.123695300"/>
+ <trkpt lat="37.428112000" lon="-122.140594400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T21:27:27.003Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T21:43:39.881Z</time>
+ </trkpt>
+ <trkpt lat="37.427806800" lon="-122.140281600"/>
+ <trkpt lat="37.426681500" lon="-122.139907800"/>
+ <trkpt lat="37.426538300" lon="-122.140020700">
+ <time>2013-05-27T21:46:23.765Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.426538300" lon="-122.140020700">
+ <time>2013-05-27T21:46:23.765Z</time>
+ </trkpt>
+ <trkpt lat="37.424299300" lon="-122.114751200">
+ <time>2013-05-27T21:50:46.753Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.424278200" lon="-122.114776600"/>
+ <trkpt lat="37.428440000" lon="-122.105606000"/>
+ <trkpt lat="37.427005700" lon="-122.109542800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.426975200" lon="-122.109519900"/>
+ <trkpt lat="37.402385700" lon="-122.112541100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.401617500" lon="-122.112967400">
+ <time>2013-05-27T22:31:36.896Z</time>
+ </trkpt>
+ <trkpt lat="37.402385700" lon="-122.112541100"/>
+ <trkpt lat="37.428325600" lon="-122.140670700"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-27T22:37:46.367Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-28T14:39:53.448Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.421772000" lon="-122.154594400"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-28T14:53:31.546Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427818200" lon="-122.140243500"/>
+ <trkpt lat="37.427593200" lon="-122.141586300"/>
+ <trkpt lat="37.424842800" lon="-122.145278900"/>
+ <trkpt lat="37.420890800" lon="-122.157234100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.420890800" lon="-122.157234100"/>
+ <trkpt lat="37.420509300" lon="-122.156120300"/>
+ <trkpt lat="37.427528300" lon="-122.149475000"/>
+ <trkpt lat="37.425170800" lon="-122.145889200"/>
+ <trkpt lat="37.428829100" lon="-122.143531700"/>
+ <trkpt lat="37.428718500" lon="-122.142822200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428676800" lon="-122.142737700">
+ <time>2013-05-28T23:31:11.748Z</time>
+ </trkpt>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-28T23:34:33.743Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-29T14:37:40.859Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.425834600" lon="-122.143798800"/>
+ <trkpt lat="37.421901700" lon="-122.155288600"/>
+ <trkpt lat="37.421833000" lon="-122.148529000"/>
+ <trkpt lat="37.426990500" lon="-122.144218400"/>
+ <trkpt lat="37.427776300" lon="-122.140213000"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-29T14:51:23.435Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.427894500" lon="-122.142074500"/>
+ <trkpt lat="37.426193200" lon="-122.147666900"/>
+ <trkpt lat="37.421039500" lon="-122.157516400"/>
+ <trkpt lat="37.422763800" lon="-122.153541500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.422733300" lon="-122.153564400"/>
+ <trkpt lat="37.416988300" lon="-122.130226100"/>
+ <trkpt lat="37.421333300" lon="-122.136390600"/>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T14:40:29.145Z</time>
+ </trkpt>
+ <trkpt lat="37.427764800" lon="-122.140197700"/>
+ <trkpt lat="37.426033000" lon="-122.143630900"/>
+ <trkpt lat="37.421707100" lon="-122.154251000"/>
+ <trkpt lat="37.450927700" lon="-122.158699000"/>
+ <trkpt lat="37.468048000" lon="-122.156570400"/>
+ <trkpt lat="37.486190700" lon="-122.147384600"/>
+ <trkpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-30T15:06:59.413Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485931300" lon="-122.148033100"/>
+ <trkpt lat="37.454895000" lon="-122.178184500"/>
+ <trkpt lat="37.451877500" lon="-122.179473800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.451984400" lon="-122.179672200"/>
+ <trkpt lat="37.427902200" lon="-122.144882200"/>
+ <trkpt lat="37.428382800" lon="-122.139526300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T22:37:14.768Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.426635700" lon="-122.143127400"/>
+ <trkpt lat="37.425090700" lon="-122.148544300"/>
+ <trkpt lat="37.420635200" lon="-122.156372000"/>
+ <trkpt lat="37.421314200" lon="-122.148956200"/>
+ <trkpt lat="37.427818200" lon="-122.143615700"/>
+ <trkpt lat="37.427822100" lon="-122.140243500"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-30T22:57:24.727Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427829700" lon="-122.140289300"/>
+ <trkpt lat="37.427410100" lon="-122.139816200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427417700" lon="-122.139984100"/>
+ <trkpt lat="37.486190700" lon="-122.147384600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-05-31T15:07:55.210Z</time>
+ </trkpt>
+ <trkpt lat="37.486240300" lon="-122.147224400"/>
+ <trkpt lat="37.486690500" lon="-122.142509400"/>
+ <trkpt lat="37.455081900" lon="-122.163795400"/>
+ <trkpt lat="37.449337000" lon="-122.160247800"/>
+ <trkpt lat="37.437633500" lon="-122.159957800"/>
+ <trkpt lat="37.428382800" lon="-122.139526300"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-05-31T15:36:46.094Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-01T16:06:54.349Z</time>
+ </trkpt>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.426898900" lon="-122.144401500"/>
+ <trkpt lat="37.427459700" lon="-122.141250600"/>
+ <trkpt lat="37.428417200" lon="-122.139617900"/>
+ <trkpt lat="37.427738100" lon="-122.140228200"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-01T16:21:54.644Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.429706500" lon="-122.143989500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.429706500" lon="-122.143989500"/>
+ <trkpt lat="37.432682000" lon="-122.152069000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.432651500" lon="-122.152099600"/>
+ <trkpt lat="37.442771900" lon="-122.161308200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.444011600" lon="-122.161796500"/>
+ <trkpt lat="37.447002400" lon="-122.160469000"/>
+ <trkpt lat="37.444549500" lon="-122.163032500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.438274300" lon="-122.157981800"/>
+ <trkpt lat="37.435089100" lon="-122.152061400"/>
+ <trkpt lat="37.432491300" lon="-122.151916500"/>
+ <trkpt lat="37.429412800" lon="-122.143463100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-02T15:57:14.614Z</time>
+ </trkpt>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.426265700" lon="-122.145324700"/>
+ <trkpt lat="37.426354200" lon="-122.144503700">
+ <time>2013-06-02T16:07:01.748Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.426354200" lon="-122.144503700">
+ <time>2013-06-02T16:17:45.347Z</time>
+ </trkpt>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-02T16:28:51.495Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427989900" lon="-122.140403700"/>
+ <trkpt lat="37.616069700" lon="-122.391944800"/>
+ <trkpt lat="37.614734600" lon="-122.390113800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.615776000" lon="-122.390480000"/>
+ <trkpt lat="37.616127000" lon="-122.391868500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.616092600" lon="-122.391860900"/>
+ <trkpt lat="37.454734800" lon="-122.177986100"/>
+ <trkpt lat="37.454200700" lon="-122.182189900"/>
+ <trkpt lat="37.451457900" lon="-122.179000800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.450450800" lon="-122.178710900"/>
+ <trkpt lat="37.449954900" lon="-122.177558800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.449974000" lon="-122.177597000"/>
+ <trkpt lat="37.428028100" lon="-122.140464700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427795400" lon="-122.141044600"/>
+ <trkpt lat="37.415679900" lon="-122.102615300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.415679900" lon="-122.102615300"/>
+ <trkpt lat="37.407997100" lon="-122.108963000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.407619300" lon="-122.111303500">
+ <time>2013-06-03T16:32:29.462Z</time>
+ </trkpt>
+ <trkpt lat="37.406349100" lon="-122.109359700"/>
+ <trkpt lat="37.399475000" lon="-122.109985300"/>
+ <trkpt lat="37.398951000" lon="-122.110810500">
+ <time>2013-06-03T16:48:30.892Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.398951000" lon="-122.110810500">
+ <time>2013-06-03T17:18:50.606Z</time>
+ </trkpt>
+ <trkpt lat="37.399356800" lon="-122.110305700"/>
+ <trkpt lat="37.401065800" lon="-122.109085000"/>
+ <trkpt lat="37.400997800" lon="-122.109596400">
+ <time>2013-06-03T17:22:17.443Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.401065800" lon="-122.109085000"/>
+ <trkpt lat="37.399768800" lon="-122.110023400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.399768800" lon="-122.110023400"/>
+ <trkpt lat="37.427448200" lon="-122.142448400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427429100" lon="-122.142410200"/>
+ <trkpt lat="37.427715300" lon="-122.140907200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-03T19:42:37.891Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.425395900" lon="-122.137397700"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-03T20:08:46.044Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.478069300" lon="-122.154357900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.478084500" lon="-122.154396000"/>
+ <trkpt lat="37.485664300" lon="-122.147003100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.474647500" lon="-122.153594900"/>
+ <trkpt lat="37.476016900" lon="-122.154273900"/>
+ <trkpt lat="37.478454500" lon="-122.171745300"/>
+ <trkpt lat="37.431339200" lon="-122.113616900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.431350700" lon="-122.113632200"/>
+ <trkpt lat="37.429695100" lon="-122.121765100"/>
+ <trkpt lat="37.427276600" lon="-122.143615700"/>
+ <trkpt lat="37.425872800" lon="-122.146980200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-04T22:54:13.094Z</time>
+ </trkpt>
+ <trkpt lat="37.428428600" lon="-122.140045100"/>
+ <trkpt lat="37.431301100" lon="-122.113555900"/>
+ <trkpt lat="37.401374800" lon="-122.113609300"/>
+ <trkpt lat="37.401546400" lon="-122.108772200"/>
+ <trkpt lat="37.401103900" lon="-122.110366800"/>
+ <trkpt lat="37.400997800" lon="-122.109596400">
+ <time>2013-06-04T23:15:47.347Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.400997800" lon="-122.109596400">
+ <time>2013-06-04T23:29:17.938Z</time>
+ </trkpt>
+ <trkpt lat="37.401657100" lon="-122.109367300"/>
+ <trkpt lat="37.427509300" lon="-122.141426000"/>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-04T23:37:41.070Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-05T14:55:19.636Z</time>
+ </trkpt>
+ <trkpt lat="37.428066200" lon="-122.140525800"/>
+ <trkpt lat="37.432834600" lon="-122.128227200"/>
+ <trkpt lat="37.433109200" lon="-122.116508400"/>
+ <trkpt lat="37.436679800" lon="-122.122077900"/>
+ <trkpt lat="37.485195100" lon="-122.149879400"/>
+ <trkpt lat="37.485301900" lon="-122.146423300"/>
+ <trkpt lat="37.485071100" lon="-122.147424200">
+ <time>2013-06-05T15:15:42.862Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.485774900" lon="-122.148918100"/>
+ <trkpt lat="37.438339200" lon="-122.124702400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.438365900" lon="-122.124671900"/>
+ <trkpt lat="37.431678700" lon="-122.114082300"/>
+ <trkpt lat="37.431621500" lon="-122.114143300"/>
+ <trkpt lat="37.432319600" lon="-122.115242000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.432341600" lon="-122.115222900">
+ <time>2013-06-05T22:57:25.719Z</time>
+ </trkpt>
+ <trkpt lat="37.432246900" lon="-122.127580800">
+ <time>2013-06-05T22:59:48.989Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.432693400" lon="-122.127525300"/>
+ <trkpt lat="37.433578400" lon="-122.133071800"/>
+ <trkpt lat="37.428428600" lon="-122.140045100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428016600" lon="-122.140449500"/>
+ <trkpt lat="37.412021600" lon="-122.124732900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.404132800" lon="-122.116256700"/>
+ <trkpt lat="37.402305600" lon="-122.113601600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.402343700" lon="-122.113021800"/>
+ <trkpt lat="37.429313600" lon="-122.106063800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.430042200" lon="-122.114707900"/>
+ <trkpt lat="37.427722900" lon="-122.140953000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427768700" lon="-122.140930100"/>
+ <trkpt lat="37.428298900" lon="-122.140197700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427716900" lon="-122.140173700">
+ <time>2013-06-06T23:42:28.643Z</time>
+ </trkpt>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.429367000" lon="-122.122283900"/>
+ <trkpt lat="37.432003000" lon="-122.114669700"/>
+ <trkpt lat="37.422847700" lon="-122.096824600"/>
+ <trkpt lat="37.423215000" lon="-122.096604600">
+ <time>2013-06-07T00:08:34.339Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.423215000" lon="-122.096604600">
+ <time>2013-06-07T00:34:30.996Z</time>
+ </trkpt>
+ <trkpt lat="37.423004100" lon="-122.097106900"/>
+ <trkpt lat="37.421897800" lon="-122.101425100"/>
+ <trkpt lat="37.406047000" lon="-122.109375200">
+ <time>2013-06-07T00:44:32.436Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.406047000" lon="-122.109375200">
+ <time>2013-06-07T00:44:32.436Z</time>
+ </trkpt>
+ <trkpt lat="37.406349100" lon="-122.109359700"/>
+ <trkpt lat="37.399265200" lon="-122.110031100"/>
+ <trkpt lat="37.399267000" lon="-122.110061600">
+ <time>2013-06-07T00:53:28.300Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.399265200" lon="-122.110031100"/>
+ <trkpt lat="37.428016600" lon="-122.140449500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.428462900" lon="-122.140449500"/>
+ <trkpt lat="37.427719100" lon="-122.140197700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427761000" lon="-122.140190100"/>
+ <trkpt lat="37.431652000" lon="-122.114112800"/>
+ <trkpt lat="37.428428600" lon="-122.140045100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427734300" lon="-122.140220600"/>
+ <trkpt lat="37.427970800" lon="-122.140373200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.427970800" lon="-122.140373200"/>
+ <trkpt lat="37.431316300" lon="-122.113578700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="37.431312500" lon="-122.113578700"/>
+ <trkpt lat="38.456996900" lon="-121.842567400"/>
+ <trkpt lat="38.497459400" lon="-121.794342000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="38.535659300" lon="-121.742448900">
+ <time>2013-06-08T00:05:05.787Z</time>
+ </trkpt>
+ <trkpt lat="38.535137100" lon="-121.741737300"/>
+ <trkpt lat="38.548210100" lon="-121.718940700"/>
+ <trkpt lat="38.548233400" lon="-121.718945400">
+ <time>2013-06-08T00:10:50.611Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="38.555117400" lon="-121.684334300">
+ <time>2013-06-08T00:20:25.869Z</time>
+ </trkpt>
+ <trkpt lat="38.555137600" lon="-121.684341400"/>
+ <trkpt lat="38.633251100" lon="-121.490570000"/>
+ <trkpt lat="38.797771400" lon="-121.214569000"/>
+ <trkpt lat="39.328742900" lon="-120.170059200"/>
+ <trkpt lat="39.556320100" lon="-119.785545300"/>
+ <trkpt lat="39.587810500" lon="-119.716911300"/>
+ <trkpt lat="39.587995800" lon="-119.717107300">
+ <time>2013-06-08T02:59:05.127Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.587997400" lon="-119.716819700"/>
+ <trkpt lat="39.532299000" lon="-119.721984800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.587520500" lon="-119.721328700"/>
+ <trkpt lat="39.530590000" lon="-119.723190300"/>
+ <trkpt lat="39.531436900" lon="-119.722824000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.531673400" lon="-119.721504200"/>
+ <trkpt lat="39.534755700" lon="-119.753631500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.534790000" lon="-119.753639200"/>
+ <trkpt lat="39.550796500" lon="-119.717445300"/>
+ <trkpt lat="39.587863900" lon="-119.716880700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.587995800" lon="-119.717107300">
+ <time>2013-06-08T16:16:32.318Z</time>
+ </trkpt>
+ <trkpt lat="39.587909600" lon="-119.716865500"/>
+ <trkpt lat="39.530101700" lon="-119.721351600"/>
+ <trkpt lat="39.530695500" lon="-119.721709400">
+ <time>2013-06-08T16:33:48.651Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.530158900" lon="-119.721153200"/>
+ <trkpt lat="40.174789400" lon="-118.478462200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.179950700" lon="-118.476104700"/>
+ <trkpt lat="40.973079600" lon="-117.734176600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.973297100" lon="-117.734481800"/>
+ <trkpt lat="40.972801200" lon="-117.735710100"/>
+ <trkpt lat="40.972965200" lon="-117.734016400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.972885100" lon="-117.733901900"/>
+ <trkpt lat="40.951721100" lon="-115.593254000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.955471800" lon="-115.561645500">
+ <time>2013-06-08T22:38:59.831Z</time>
+ </trkpt>
+ <trkpt lat="40.955440500" lon="-115.564483600"/>
+ <trkpt lat="40.738521500" lon="-114.077667200"/>
+ <trkpt lat="40.740493500" lon="-114.073697100">
+ <time>2013-06-09T00:07:27.752Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.740493500" lon="-114.073697100">
+ <time>2013-06-09T00:07:27.752Z</time>
+ </trkpt>
+ <trkpt lat="40.738521500" lon="-114.077667200"/>
+ <trkpt lat="40.739322600" lon="-114.077285700"/>
+ <trkpt lat="40.739389200" lon="-114.077667800">
+ <time>2013-06-09T00:11:57.463Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <name>Unknown Activity Type</name>
+ <trkseg>
+ <trkpt lat="40.739389200" lon="-114.077667800">
+ <time>2013-06-09T00:11:57.463Z</time>
+ </trkpt>
+ <trkpt lat="40.740381500" lon="-114.073525400">
+ <time>2013-06-09T00:25:37.086Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.739322600" lon="-114.077285700"/>
+ <trkpt lat="40.716625200" lon="-112.122230500"/>
+ <trkpt lat="40.991367300" lon="-111.896728500"/>
+ <trkpt lat="40.995880100" lon="-111.904731700"/>
+ <trkpt lat="41.051052000" lon="-112.247009200"/>
+ <trkpt lat="41.040451000" lon="-112.259819000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.043051200" lon="-112.251335700">
+ <time>2013-06-09T13:31:55.421Z</time>
+ </trkpt>
+ <trkpt lat="41.043087000" lon="-112.251281700"/>
+ <trkpt lat="41.087463300" lon="-112.030204700"/>
+ <trkpt lat="41.087816400" lon="-112.030206400">
+ <time>2013-06-09T14:44:54.189Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.086212100" lon="-111.983924800"/>
+ <trkpt lat="40.716617500" lon="-111.917388900"/>
+ <trkpt lat="40.724102000" lon="-111.908691400"/>
+ <trkpt lat="40.760009700" lon="-111.916824300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.760009700" lon="-111.916778500"/>
+ <trkpt lat="40.759918200" lon="-111.893409700"/>
+ <trkpt lat="40.768852200" lon="-111.885391200"/>
+ <trkpt lat="40.767963400" lon="-111.889358500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.767963400" lon="-111.889358500"/>
+ <trkpt lat="40.766147600" lon="-111.893920800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.766311600" lon="-111.893692000"/>
+ <trkpt lat="40.768356300" lon="-111.890998800"/>
+ <trkpt lat="40.765010800" lon="-111.881172100"/>
+ <trkpt lat="40.755439700" lon="-111.576812700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.982842300" lon="-111.416545300">
+ <time>2013-06-09T18:24:26.892Z</time>
+ </trkpt>
+ <trkpt lat="40.983188600" lon="-111.416839500"/>
+ <trkpt lat="41.726722700" lon="-107.728340100"/>
+ <trkpt lat="41.726700500" lon="-107.728454600">
+ <time>2013-06-09T21:44:07.529Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.784196000" lon="-107.368583500">
+ <time>2013-06-09T21:50:49.410Z</time>
+ </trkpt>
+ <trkpt lat="41.783252700" lon="-107.369567800"/>
+ <trkpt lat="41.146465300" lon="-104.769157400"/>
+ <trkpt lat="41.146465300" lon="-104.769130600">
+ <time>2013-06-10T00:41:06.215Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.146465300" lon="-104.769157400"/>
+ <trkpt lat="41.293128900" lon="-105.533905000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.293045000" lon="-105.534209000">
+ <time>2013-06-10T01:46:50.705Z</time>
+ </trkpt>
+ <trkpt lat="41.293128900" lon="-105.533905000"/>
+ <trkpt lat="41.295734400" lon="-105.544555600"/>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T02:07:44.121Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T14:58:34.512Z</time>
+ </trkpt>
+ <trkpt lat="41.295734400" lon="-105.544555600"/>
+ <trkpt lat="41.255233700" lon="-105.420898400"/>
+ <trkpt lat="41.189121200" lon="-105.211791900"/>
+ <trkpt lat="41.111110600" lon="-104.801643300"/>
+ <trkpt lat="41.110958700" lon="-104.801646900">
+ <time>2013-06-10T15:53:53.555Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.110958700" lon="-104.801646900">
+ <time>2013-06-10T15:53:53.555Z</time>
+ </trkpt>
+ <trkpt lat="41.111110600" lon="-104.801643300"/>
+ <trkpt lat="41.146465300" lon="-104.769157400"/>
+ <trkpt lat="41.158382400" lon="-104.803245500"/>
+ <trkpt lat="41.157758600" lon="-104.803323200">
+ <time>2013-06-10T16:44:07.677Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.157758600" lon="-104.803323200">
+ <time>2013-06-10T16:45:52.207Z</time>
+ </trkpt>
+ <trkpt lat="41.159320800" lon="-104.803581200"/>
+ <trkpt lat="41.295734400" lon="-105.544555600"/>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T18:09:40.466Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.249472900" lon="-105.444440300">
+ <time>2013-06-10T19:17:02.822Z</time>
+ </trkpt>
+ <trkpt lat="41.250782000" lon="-105.438102700"/>
+ <trkpt lat="41.252044600" lon="-105.415184000"/>
+ <trkpt lat="41.252125800" lon="-105.415066000">
+ <time>2013-06-10T19:29:39.236Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.252281600" lon="-105.415200400">
+ <time>2013-06-10T19:37:37.898Z</time>
+ </trkpt>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T19:44:31.221Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T19:44:31.221Z</time>
+ </trkpt>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T19:55:32.523Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T19:55:32.523Z</time>
+ </trkpt>
+ <trkpt lat="41.295734400" lon="-105.544555600"/>
+ <trkpt lat="41.250568300" lon="-105.437950100"/>
+ <trkpt lat="41.249116200" lon="-105.443600500">
+ <time>2013-06-10T20:03:17.504Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T21:54:16.965Z</time>
+ </trkpt>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T22:17:00.774Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T22:22:32.878Z</time>
+ </trkpt>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-10T22:48:24.976Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.295823600" lon="-105.544503900">
+ <time>2013-06-11T13:54:13.492Z</time>
+ </trkpt>
+ <trkpt lat="41.295734400" lon="-105.544555600"/>
+ <trkpt lat="41.298183400" lon="-105.553222600"/>
+ <trkpt lat="41.299869700" lon="-105.555548600">
+ <time>2013-06-11T14:27:16.710Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.299827200" lon="-105.556103200">
+ <time>2013-06-11T14:54:23.553Z</time>
+ </trkpt>
+ <trkpt lat="41.298183400" lon="-105.553222600"/>
+ <trkpt lat="40.581504800" lon="-105.060531600"/>
+ <trkpt lat="40.580089500" lon="-105.075073200"/>
+ <trkpt lat="40.585433900" lon="-105.076934800"/>
+ <trkpt lat="40.585433000" lon="-105.076996500">
+ <time>2013-06-11T16:46:48.680Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.585485700" lon="-105.075112400">
+ <time>2013-06-11T16:57:08.697Z</time>
+ </trkpt>
+ <trkpt lat="40.585609400" lon="-105.075111300"/>
+ <trkpt lat="40.592914500" lon="-105.057716300"/>
+ <trkpt lat="40.592935800" lon="-105.058433200">
+ <time>2013-06-11T17:19:04.305Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.592935800" lon="-105.058433200">
+ <time>2013-06-11T17:19:04.305Z</time>
+ </trkpt>
+ <trkpt lat="40.592914500" lon="-105.057777400"/>
+ <trkpt lat="40.594379400" lon="-105.057624800"/>
+ <trkpt lat="40.594378300" lon="-105.057502900">
+ <time>2013-06-11T17:31:43.401Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.594379400" lon="-105.057685800"/>
+ <trkpt lat="40.522655400" lon="-104.987350400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.361225000" lon="-104.985930400">
+ <time>2013-06-11T18:33:48.245Z</time>
+ </trkpt>
+ <trkpt lat="40.361389100" lon="-104.985519400"/>
+ <trkpt lat="39.775119700" lon="-104.859748800"/>
+ <trkpt lat="39.657939900" lon="-104.841926500"/>
+ <trkpt lat="39.651557500" lon="-104.850437300">
+ <time>2013-06-11T19:29:27.072Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.655954700" lon="-104.850681900">
+ <time>2013-06-11T23:47:37.753Z</time>
+ </trkpt>
+ <trkpt lat="39.656005800" lon="-104.850708000"/>
+ <trkpt lat="39.661689700" lon="-104.843437100"/>
+ <trkpt lat="39.653518600" lon="-105.050849900"/>
+ <trkpt lat="39.654834700" lon="-105.053199700"/>
+ <trkpt lat="39.695774000" lon="-105.077613800"/>
+ <trkpt lat="39.695746500" lon="-105.077104900">
+ <time>2013-06-12T00:47:30.345Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.695811500" lon="-105.076667800">
+ <time>2013-06-12T02:37:08.634Z</time>
+ </trkpt>
+ <trkpt lat="39.696220300" lon="-105.076545700"/>
+ <trkpt lat="39.695774000" lon="-105.077613800"/>
+ <trkpt lat="39.694236000" lon="-105.077376500">
+ <time>2013-06-12T02:52:03.380Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.682720100" lon="-105.064552300"/>
+ <trkpt lat="39.682308100" lon="-105.070014900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.682265300" lon="-105.070015900">
+ <time>2013-06-12T03:12:28.981Z</time>
+ </trkpt>
+ <trkpt lat="39.682258600" lon="-105.070014900"/>
+ <trkpt lat="39.687393100" lon="-105.081405600"/>
+ <trkpt lat="39.701301500" lon="-105.078613200"/>
+ <trkpt lat="39.656780200" lon="-104.844276400"/>
+ <trkpt lat="39.655814600" lon="-104.843499700">
+ <time>2013-06-12T03:45:14.118Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <name>Unknown Activity Type</name>
+ <trkseg>
+ <trkpt lat="39.655814600" lon="-104.843499700">
+ <time>2013-06-12T03:45:14.118Z</time>
+ </trkpt>
+ <trkpt lat="39.655670000" lon="-104.851040400">
+ <time>2013-06-12T05:07:57.646Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.655670000" lon="-104.851040400">
+ <time>2013-06-12T05:07:57.646Z</time>
+ </trkpt>
+ <trkpt lat="39.654773700" lon="-104.850875800"/>
+ <trkpt lat="39.656326200" lon="-104.838005000"/>
+ <trkpt lat="39.656103000" lon="-104.838230200">
+ <time>2013-06-12T05:43:38.921Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <name>Unknown Activity Type</name>
+ <trkseg>
+ <trkpt lat="39.655670000" lon="-104.851040400">
+ <time>2013-06-12T05:43:38.921Z</time>
+ </trkpt>
+ <trkpt lat="39.655954700" lon="-104.850681900">
+ <time>2013-06-12T07:18:52.700Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.654880500" lon="-104.850273100"/>
+ <trkpt lat="39.659706100" lon="-104.839782700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.659427600" lon="-104.836158700"/>
+ <trkpt lat="39.673061300" lon="-104.788627600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.685434900" lon="-104.762416800">
+ <time>2013-06-12T16:12:15.580Z</time>
+ </trkpt>
+ <trkpt lat="39.685434900" lon="-104.762416800">
+ <time>2013-06-12T16:27:43.584Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.682455200" lon="-104.756649200">
+ <time>2013-06-12T16:38:50.290Z</time>
+ </trkpt>
+ <trkpt lat="39.673893500" lon="-104.793751100">
+ <time>2013-06-12T16:43:27.032Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.682125500" lon="-104.763982500">
+ <time>2013-06-12T17:19:23.360Z</time>
+ </trkpt>
+ <trkpt lat="39.682094500" lon="-104.763977000"/>
+ <trkpt lat="39.673751800" lon="-104.769401500"/>
+ <trkpt lat="39.673695200" lon="-104.769876000">
+ <time>2013-06-12T17:32:22.357Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.696828200" lon="-104.771848800">
+ <time>2013-06-12T17:50:17.643Z</time>
+ </trkpt>
+ <trkpt lat="39.696834500" lon="-104.771842900"/>
+ <trkpt lat="39.600166300" lon="-104.709983800"/>
+ <trkpt lat="39.600123900" lon="-104.709899900">
+ <time>2013-06-12T18:11:21.105Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.609431500" lon="-104.705711200">
+ <time>2013-06-12T19:43:34.167Z</time>
+ </trkpt>
+ <trkpt lat="39.609214700" lon="-104.705780000"/>
+ <trkpt lat="39.674842800" lon="-104.794258100"/>
+ <trkpt lat="39.674838500" lon="-104.794340400">
+ <time>2013-06-12T20:02:56.823Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.680552300" lon="-104.768781000">
+ <time>2013-06-12T20:42:24.544Z</time>
+ </trkpt>
+ <trkpt lat="39.680541900" lon="-104.768798800"/>
+ <trkpt lat="39.673248200" lon="-104.787162700"/>
+ <trkpt lat="38.776561700" lon="-104.814872700"/>
+ <trkpt lat="38.830219200" lon="-104.821792600"/>
+ <trkpt lat="39.268230400" lon="-103.709060600"/>
+ <trkpt lat="39.268306200" lon="-103.709025200">
+ <time>2013-06-13T00:36:21.936Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="39.268306200" lon="-103.709025200">
+ <time>2013-06-13T00:52:55.220Z</time>
+ </trkpt>
+ <trkpt lat="39.268230400" lon="-103.709060600"/>
+ <trkpt lat="40.502246800" lon="-103.261695800"/>
+ <trkpt lat="40.501756200" lon="-103.263251800">
+ <time>2013-06-13T02:38:00.829Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="40.593334100" lon="-103.227569500"/>
+ <trkpt lat="41.116775500" lon="-102.948249800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="41.116722900" lon="-102.948249300">
+ <time>2013-06-13T16:07:12.553Z</time>
+ </trkpt>
+ <trkpt lat="41.116775500" lon="-102.948249800"/>
+ <trkpt lat="43.755271900" lon="-103.611900300"/>
+ <trkpt lat="43.704990300" lon="-103.603958100"/>
+ <trkpt lat="43.705238000" lon="-103.604923700">
+ <time>2013-06-13T20:00:58.727Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.705238000" lon="-103.604923700">
+ <time>2013-06-13T20:00:58.727Z</time>
+ </trkpt>
+ <trkpt lat="43.705238000" lon="-103.604923700">
+ <time>2013-06-13T20:13:13.288Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.828887900" lon="-103.631637500"/>
+ <trkpt lat="43.828792500" lon="-103.631736700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.828693300" lon="-103.631843500"/>
+ <trkpt lat="43.905910400" lon="-103.591049100"/>
+ <trkpt lat="43.875217400" lon="-103.452346800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.875236000" lon="-103.452382100">
+ <time>2013-06-13T22:17:12.333Z</time>
+ </trkpt>
+ <trkpt lat="43.875217400" lon="-103.452346800"/>
+ <trkpt lat="43.934020900" lon="-103.558509800"/>
+ <trkpt lat="43.933958400" lon="-103.557913500">
+ <time>2013-06-13T23:25:27.729Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="44.344738400" lon="-103.776535500">
+ <time>2013-06-14T15:37:20.500Z</time>
+ </trkpt>
+ <trkpt lat="43.937797700" lon="-103.575189700">
+ <time>2013-06-14T16:10:35.835Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.937797700" lon="-103.575189700">
+ <time>2013-06-14T16:10:35.835Z</time>
+ </trkpt>
+ <trkpt lat="43.933324100" lon="-103.575614800">
+ <time>2013-06-14T16:18:50.973Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.933704300" lon="-103.575370700"/>
+ <trkpt lat="43.611808700" lon="-96.950965800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="43.611938400" lon="-96.951087900"/>
+ <trkpt lat="43.781135500" lon="-96.212539600"/>
+ <trkpt lat="44.853801700" lon="-95.483612000"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="44.960361400" lon="-95.355903600"/>
+ <trkpt lat="45.134021700" lon="-94.914154000"/>
+ <trkpt lat="45.048835700" lon="-94.408096300"/>
+ <trkpt lat="44.970123200" lon="-94.422554000"/>
+ <trkpt lat="45.104045800" lon="-94.549667300"/>
+ <trkpt lat="45.277744200" lon="-94.438362100"/>
+ <trkpt lat="45.308345700" lon="-94.393653800"/>
+ <trkpt lat="45.515975900" lon="-94.495468100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="45.457854600" lon="-94.524295600">
+ <time>2013-06-16T03:26:20.273Z</time>
+ </trkpt>
+ <trkpt lat="45.457854600" lon="-94.524295600">
+ <time>2013-06-16T03:36:50.793Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="45.372323900" lon="-94.539415100">
+ <time>2013-06-16T13:51:14.732Z</time>
+ </trkpt>
+ <trkpt lat="45.371788000" lon="-94.537643400"/>
+ <trkpt lat="45.454021400" lon="-94.520027100"/>
+ <trkpt lat="45.187522800" lon="-94.542854300"/>
+ <trkpt lat="45.135433100" lon="-94.528190600"/>
+ <trkpt lat="45.096557600" lon="-94.410583400"/>
+ <trkpt lat="45.096544100" lon="-94.410581800">
+ <time>2013-06-16T14:53:12.037Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="45.009764900" lon="-94.359263300">
+ <time>2013-06-16T15:12:35.099Z</time>
+ </trkpt>
+ <trkpt lat="45.009769400" lon="-94.358078000"/>
+ <trkpt lat="45.124847400" lon="-94.520782400"/>
+ <trkpt lat="45.138248400" lon="-94.551933200"/>
+ <trkpt lat="45.152545900" lon="-94.604629500"/>
+ <trkpt lat="45.377914400" lon="-94.728652900"/>
+ <trkpt lat="45.727874700" lon="-94.951797400"/>
+ <trkpt lat="45.727890300" lon="-94.951645600">
+ <time>2013-06-16T16:23:54.357Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="45.727874700" lon="-94.951728800"/>
+ <trkpt lat="45.723075800" lon="-94.950744600"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="45.723137500" lon="-94.950432500">
+ <time>2013-06-16T16:48:53.763Z</time>
+ </trkpt>
+ <trkpt lat="45.723075800" lon="-94.950744600"/>
+ <trkpt lat="46.850719400" lon="-96.798866200"/>
+ <trkpt lat="46.850532000" lon="-96.798943000">
+ <time>2013-06-16T18:39:40.033Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="46.850532000" lon="-96.798943000">
+ <time>2013-06-16T18:53:47.491Z</time>
+ </trkpt>
+ <trkpt lat="46.850719400" lon="-96.798866200"/>
+ <trkpt lat="49.266620600" lon="-97.342506400"/>
+ <trkpt lat="49.343570700" lon="-97.367401100"/>
+ <trkpt lat="49.343173800" lon="-97.367577600">
+ <time>2013-06-16T21:55:35.563Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.396728500" lon="-97.326591400"/>
+ <trkpt lat="49.895103400" lon="-97.142799300"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.894390100" lon="-97.143188400"/>
+ <trkpt lat="49.893383000" lon="-97.144836400"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.895822600" lon="-97.143639000">
+ <time>2013-06-17T14:34:48.832Z</time>
+ </trkpt>
+ <trkpt lat="49.894878300" lon="-97.142669600"/>
+ <trkpt lat="49.895851100" lon="-97.138679500"/>
+ <trkpt lat="49.895535100" lon="-97.139019000">
+ <time>2013-06-17T14:39:04.140Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.895535100" lon="-97.139019000">
+ <time>2013-06-17T14:50:53.361Z</time>
+ </trkpt>
+ <trkpt lat="49.895042400" lon="-97.138313200"/>
+ <trkpt lat="49.895168300" lon="-97.142837500"/>
+ <trkpt lat="49.895028600" lon="-97.142497800">
+ <time>2013-06-17T14:53:32.271Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.895028600" lon="-97.142497800">
+ <time>2013-06-17T15:28:13.664Z</time>
+ </trkpt>
+ <trkpt lat="49.895973200" lon="-97.142066900"/>
+ <trkpt lat="49.900581300" lon="-97.136703400"/>
+ <trkpt lat="49.899427000" lon="-97.137168000">
+ <time>2013-06-17T15:37:13.411Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.899427000" lon="-97.137168000">
+ <time>2013-06-17T17:54:26.354Z</time>
+ </trkpt>
+ <trkpt lat="49.900573700" lon="-97.136680600"/>
+ <trkpt lat="49.900928400" lon="-97.136367700"/>
+ <trkpt lat="49.897628700" lon="-97.133491500"/>
+ <trkpt lat="49.894161200" lon="-97.135421700"/>
+ <trkpt lat="49.895256000" lon="-97.132690400"/>
+ <trkpt lat="49.894508300" lon="-97.132278400"/>
+ <trkpt lat="49.893738700" lon="-97.133995700">
+ <time>2013-06-17T18:08:22.760Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.894508300" lon="-97.132278400"/>
+ <trkpt lat="49.894996600" lon="-97.126541100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.894996600" lon="-97.126541100"/>
+ <trkpt lat="49.897422700" lon="-97.128616300"/>
+ <trkpt lat="49.898525200" lon="-97.126380900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.898984500" lon="-97.125334300">
+ <time>2013-06-17T19:11:27.392Z</time>
+ </trkpt>
+ <trkpt lat="49.898525200" lon="-97.126380900"/>
+ <trkpt lat="49.894165000" lon="-97.114471400"/>
+ <trkpt lat="49.891891400" lon="-97.122779800"/>
+ <trkpt lat="49.891728300" lon="-97.122865300">
+ <time>2013-06-17T19:23:23.972Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.891891400" lon="-97.122779800"/>
+ <trkpt lat="49.891036900" lon="-97.128082200"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.895343700" lon="-97.142875600"/>
+ <trkpt lat="49.894084900" lon="-97.142578100"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.897909800" lon="-97.140740400">
+ <time>2013-06-18T02:09:59.602Z</time>
+ </trkpt>
+ <trkpt lat="49.897997400" lon="-97.137253500">
+ <time>2013-06-18T02:11:00.566Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.897997400" lon="-97.137253500">
+ <time>2013-06-18T02:29:12.825Z</time>
+ </trkpt>
+ <trkpt lat="49.897846200" lon="-97.137771600"/>
+ <trkpt lat="49.894004800" lon="-97.139251700"/>
+ <trkpt lat="49.890960600" lon="-97.140556300"/>
+ <trkpt lat="49.894031500" lon="-97.140762300"/>
+ <trkpt lat="49.894672300" lon="-97.142547600"/>
+ <trkpt lat="49.895359000" lon="-97.142814600"/>
+ <trkpt lat="49.895028600" lon="-97.142497800">
+ <time>2013-06-18T02:45:46.829Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.894390100" lon="-97.143188400"/>
+ <trkpt lat="49.893539400" lon="-97.140495300"/>
+ <trkpt lat="49.887516000" lon="-97.134017900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.887516000" lon="-97.134017900"/>
+ <trkpt lat="49.887046800" lon="-97.130691500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.886760700" lon="-97.131095800"/>
+ <trkpt lat="49.889289800" lon="-97.131690900"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.889289800" lon="-97.131690900"/>
+ <trkpt lat="49.891185700" lon="-97.132446200"/>
+ <trkpt lat="49.889289800" lon="-97.135238600"/>
+ <trkpt lat="49.877395600" lon="-97.270591700"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="49.881710000" lon="-97.288383400"/>
+ <trkpt lat="49.883499100" lon="-97.295814500"/>
+ <trkpt lat="49.905082700" lon="-97.760185200"/>
+ <trkpt lat="50.226261100" lon="-99.476432800"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="50.226031000" lon="-99.476464300">
+ <time>2013-06-18T19:45:55.425Z</time>
+ </trkpt>
+ <trkpt lat="50.226261100" lon="-99.476463300"/>
+ <trkpt lat="50.651439600" lon="-99.966766300"/>
+ <trkpt lat="50.651973200" lon="-99.967434000">
+ <time>2013-06-18T21:02:48.525Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="50.651973200" lon="-99.967434000">
+ <time>2013-06-18T21:33:40.351Z</time>
+ </trkpt>
+ <trkpt lat="50.651973200" lon="-99.967434000">
+ <time>2013-06-18T21:56:07.656Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <name>Unknown Activity Type</name>
+ <trkseg>
+ <trkpt lat="50.652657200" lon="-99.965409200">
+ <time>2013-06-18T22:17:51Z</time>
+ </trkpt>
+ <trkpt lat="50.651973200" lon="-99.967434000">
+ <time>2013-06-19T03:37:25Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="50.651973200" lon="-99.967434000">
+ <time>2013-06-19T17:42:44.305Z</time>
+ </trkpt>
+ <trkpt lat="50.651439600" lon="-99.966766300"/>
+ <trkpt lat="50.772254900" lon="-101.281158400"/>
+ <trkpt lat="50.772498300" lon="-101.281019500">
+ <time>2013-06-19T19:22:11.715Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="50.772270200" lon="-101.281234700"/>
+ <trkpt lat="50.974746700" lon="-102.083053500"/>
+ </trkseg>
+ </trk>
+ <trk>
+ <trkseg>
+ <trkpt lat="50.974741100" lon="-102.083063500">
+ <time>2013-06-19T20:41:34.505Z</time>
+ </trkpt>
+ <trkpt lat="50.974746700" lon="-102.083053500"/>
+ <trkpt lat="51.794361100" lon="-104.686210600"/>
+ <trkpt lat="51.794387600" lon="-104.686213800">
+ <time>2013-06-19T22:52:34.023Z</time>
+ </trkpt>
+ </trkseg>
+ </trk>
+</gpx>
max_position_point Retain at most this number of position points (0
rotate_colors Rotate colors for tracks and routes (default autom
prec Precision of coordinates, number of decimals
+ googletakeout Google Takeout Location History
land_air_sea GPS Tracking Key Pro text
snlen Max synthesized shortname length
snwhite (0/1) Allow whitespace synth. shortnames
case "$1" in
-p) PNAME=$2; shift 2;;
-v) VALGRIND=$2; shift 2;;
+ -d) DEBUG=1; shift 1;;
*) break;;
esac
done
TMPDIR=${GBTEMP:-/tmp}/gpsbabel.$$
mkdir -p $TMPDIR
-trap "rm -fr $TMPDIR" 0 1 2 3 15
+if test -z "$DEBUG"; then
+ trap "rm -fr $TMPDIR" 0 1 2 3 15
+else
+ echo "Preserving tempdir TMPDIR because DEBUG is set"
+fi
bincompare()
{
--- /dev/null
+rm -f ${TMPDIR}/googletakeout.gpx
+gpsbabel \
+ -i googletakeout \
+ -f ${REFERENCE}/googletakeout \
+ -o gpx \
+ -F ${TMPDIR}/googletakeout.gpx
+
+compare "${TMPDIR}/googletakeout.gpx" "${REFERENCE}/googletakeout/googletakeout.gpx"
#include "text.h" // for TextFormat
#include "unicsv.h" // for UnicsvFormat
#include "xcsv.h" // for XcsvStyle, XcsvFormat
+#include "googletakeout.h" // for GoogleTakeoutFormat
extern ff_vecs_t geo_vecs;
GeoJsonFormat geojson_fmt;
GlobalsatSportFormat globalsat_sport_fmt;
QstarzBL1000Format qstarz_bl_1000_fmt;
+ GoogleTakeoutFormat google_timeline_fmt;
#endif // MAXIMAL_ENABLED
const QVector<vecs_t> vec_list {
"Qstarz BL-1000",
nullptr,
nullptr,
+ },
+ {
+ &google_timeline_fmt,
+ "googletakeout",
+ "Google Takeout Location History",
+ "json",
+ nullptr,
}
#endif // MAXIMAL_ENABLED
};
--- /dev/null
+<para>
+ Google gives you two options to download your location history:
+ In Google Maps, you can go into your Timeline and download your location
+ history a day at a time as KML files. Or, in Google Takeout, you can
+ download all of your location history all at once as a ZIP of JSON files,
+ one for each month.
+</para>
+
+<para>
+ The "googletakeout" GPSBabel format will process the location history
+ JSON files. It can operate on individual JSON files, the folders in the
+ ZIP that contain a year's worth of data, or the entire location history
+ at once.
+</para>
+
+<para>
+ There is no official documentation from Google for this format, however,
+ a volunteer is maintaining a schema at
+ <link xmlns:xlink="http://www.w3.org/1999/xlink"
+ xlink:href="https://locationhistoryformat.com/">
+ locationhistoryformat.com
+ </link>.
+</para>
+
+<para>
+ To obtain your Google Takeout History:
+ <itemizedlist mark="bullet">
+ <listitem><para>
+ Go to
+ <link xmlns:xlink="http://www.w3.org/1999/xlink"
+ xlink:href="https://takeout.google.com/">
+ takeout.google.com
+ </link>
+ </para></listitem>
+ <listitem><para>Click on "Deselect all"</para></listitem>
+ <listitem><para>
+ Scroll down to "Location History" and check the box
+ </para></listitem>
+ <listitem><para>
+ Scroll to the bottom of the page and click on "Next step"
+ </para></listitem>
+ <listitem><para>Click on "Create export"</para></listitem>
+ </itemizedlist>
+ In a little while, you will receive an email to download your location
+ history, which will be one or more zipfiles. Unzip everything into the same
+ folder. Your history will be in the folder
+ "Takeout/Location History/Semantic Location History" within this folder.
+</para>
+
+<example xml:id="googletakeout-all">
+ <title>Convert entire location history to a single GPX file</title>
+ <para><userinput>
+ gpsbabel -i googletakeout -f "Semantic Location History" -o gpx -F all.gpx
+ </userinput></para>
+</example>
+
+<example xml:id="googletakeout-year">
+ <title>Convert a single years' location history to GPX</title>
+ <para><userinput>
+ gpsbabel -i googletakeout -f "Semantic Location History/2022" -o gpx -F 2022.gpx
+ </userinput></para>
+</example>
+
+<example xml:id="googletakeout-month">
+ <title>Convert a single months' location history to GPX</title>
+ <para><userinput>
+ gpsbabel -i googletakeout -f "Semantic Location History/2023/2023_MARCH.json" -o gpx -F 2023-03.gpx
+ </userinput></para>
+</example>